Package org.htmlparser.util
Interface ParserFeedback
-
- All Known Implementing Classes:
DefaultParserFeedback,Feedback
public interface ParserFeedbackInterface for providing feedback without forcing the output destination to be predefined. A default implementation is provided to output events to the console but alternate implementations that log, watch for specific messages, etc. are also possible.- See Also:
DefaultParserFeedback,FeedbackManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderror(java.lang.String message, ParserException e)voidinfo(java.lang.String message)voidwarning(java.lang.String message)
-
-
-
Method Detail
-
info
void info(java.lang.String message)
-
warning
void warning(java.lang.String message)
-
error
void error(java.lang.String message, ParserException e)
-
-