Package com.meterware.httpunit.parsing
Interface HTMLParserListener
- All Known Subinterfaces:
HtmlErrorListener
public interface HTMLParserListener
A listener for messages from the HTMLParser. This provides a mechanism to watch for errors and warnings generated
during parsing.
- Author:
- Russell Gold, Benoit Xhenseval
-
Method Summary
-
Method Details
-
warning
Invoked when the parser wishes to report a warning.- Parameters:
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 found
-
error
Invoked when the parser wishes to report an error.- Parameters:
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
-