com.gargoylesoftware.css.parser.CSSParseException Java Examples

The following examples show how to use com.gargoylesoftware.css.parser.CSSParseException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DefaultCssErrorHandler.java    From htmlunit with Apache License 2.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void fatalError(final CSSParseException exception) {
    if (LOG.isWarnEnabled()) {
        LOG.warn("CSS fatal error: " + buildMessage(exception));
    }
}
 
Example #2
Source File: DefaultCssErrorHandler.java    From htmlunit with Apache License 2.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void warning(final CSSParseException exception) {
    if (LOG.isWarnEnabled()) {
        LOG.warn("CSS warning: " + buildMessage(exception));
    }
}
 
Example #3
Source File: DefaultCssErrorHandler.java    From htmlunit with Apache License 2.0 5 votes vote down vote up
/**
 * Builds a message for the specified CSS parsing exception.
 * @param exception the CSS parsing exception to build a message for
 * @return a message for the specified CSS parsing exception
 */
private static String buildMessage(final CSSParseException exception) {
    final String uri = exception.getURI();
    final int line = exception.getLineNumber();
    final int col = exception.getColumnNumber();

    if (null == uri) {
        return "[" + line + ":" + col + "] " + exception.getMessage();
    }
    return "'" + uri + "' [" + line + ":" + col + "] " + exception.getMessage();
}
 
Example #4
Source File: DefaultCssErrorHandler.java    From htmlunit with Apache License 2.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void error(final CSSParseException exception) {
    if (LOG.isWarnEnabled()) {
        LOG.warn("CSS error: " + buildMessage(exception));
    }
}
 
Example #5
Source File: DefaultCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 5 votes vote down vote up
/**
 * Builds a message for the specified CSS parsing exception.
 * @param exception the CSS parsing exception to build a message for
 * @return a message for the specified CSS parsing exception
 */
private static String buildMessage(final CSSParseException exception) {
    final String uri = exception.getURI();
    final int line = exception.getLineNumber();
    final int col = exception.getColumnNumber();

    if (null == uri) {
        return "[" + line + ":" + col + "] " + exception.getMessage();
    }
    return "'" + uri + "' [" + line + ":" + col + "] " + exception.getMessage();
}
 
Example #6
Source File: DomNode.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
@Override
public void error(final CSSParseException exception) throws CSSException {
    errorDetected_ = true;
}
 
Example #7
Source File: DomNode.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
@Override
public void fatalError(final CSSParseException exception) throws CSSException {
    errorDetected_ = true;
}
 
Example #8
Source File: DomNode.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
@Override
public void warning(final CSSParseException exception) throws CSSException {
    // ignore
}
 
Example #9
Source File: SilentCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void warning(final CSSParseException exception) {
    // Ignore.
}
 
Example #10
Source File: SilentCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void fatalError(final CSSParseException exception) {
    // Ignore.
}
 
Example #11
Source File: SilentCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void error(final CSSParseException exception) {
    // Ignore.
}
 
Example #12
Source File: DefaultCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void warning(final CSSParseException exception) {
    LOG.warn("CSS warning: " + buildMessage(exception));
}
 
Example #13
Source File: DefaultCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void fatalError(final CSSParseException exception) {
    LOG.warn("CSS fatal error: " + buildMessage(exception));
}
 
Example #14
Source File: DefaultCssErrorHandler.java    From HtmlUnit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void error(final CSSParseException exception) {
    LOG.warn("CSS error: " + buildMessage(exception));
}
 
Example #15
Source File: DomNode.java    From htmlunit with Apache License 2.0 4 votes vote down vote up
@Override
public void error(final CSSParseException exception) throws CSSException {
    errorDetected_ = true;
}
 
Example #16
Source File: DomNode.java    From htmlunit with Apache License 2.0 4 votes vote down vote up
@Override
public void fatalError(final CSSParseException exception) throws CSSException {
    errorDetected_ = true;
}
 
Example #17
Source File: DomNode.java    From htmlunit with Apache License 2.0 4 votes vote down vote up
@Override
public void warning(final CSSParseException exception) throws CSSException {
    // ignore
}
 
Example #18
Source File: SilentCssErrorHandler.java    From htmlunit with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void warning(final CSSParseException exception) {
    // Ignore.
}
 
Example #19
Source File: SilentCssErrorHandler.java    From htmlunit with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void fatalError(final CSSParseException exception) {
    // Ignore.
}
 
Example #20
Source File: SilentCssErrorHandler.java    From htmlunit with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void error(final CSSParseException exception) {
    // Ignore.
}