public interface HTMLParserListener
| Modifier and Type | Method and Description |
|---|---|
void |
error(java.net.URL url,
java.lang.String msg,
int line,
int column)
Invoked when the parser wishes to report an error.
|
void |
warning(java.net.URL url,
java.lang.String msg,
int line,
int column)
Invoked when the parser wishes to report a warning.
|
void warning(java.net.URL url,
java.lang.String msg,
int line,
int column)
url - the location of the document to which the warning applies.msg - the warning messageline - the line in the document on which the problematic HTML was foundcolumn - the column in the document on which the problematic HTML was foundvoid error(java.net.URL url,
java.lang.String msg,
int line,
int column)
url - the location of the document to which the error applies.msg - the warning messageline - the line in the document on which the problematic HTML was foundcolumn - the column in the document on which the problematic HTML was found