Uses of Interface
org.htmlparser.util.ParserFeedback
-
Packages that use ParserFeedback Package Description org.htmlparser The basic API classes which will be used by most developers when working with the HTML Parser.org.htmlparser.sax The sax package implements a SAX (Simple API for XML) parser for HTML.org.htmlparser.util Code which can be reused by many classes, is located in this package. -
-
Uses of ParserFeedback in org.htmlparser
Fields in org.htmlparser declared as ParserFeedback Modifier and Type Field Description static ParserFeedback
Parser. DEVNULL
A quiet message sink.protected ParserFeedback
Parser. mFeedback
Feedback object.static ParserFeedback
Parser. STDOUT
A verbose message sink.Methods in org.htmlparser that return ParserFeedback Modifier and Type Method Description ParserFeedback
Parser. getFeedback()
Returns the current feedback object.Methods in org.htmlparser with parameters of type ParserFeedback Modifier and Type Method Description void
Parser. setFeedback(ParserFeedback fb)
Sets the feedback object used in scanning.Constructors in org.htmlparser with parameters of type ParserFeedback Constructor Description Parser(java.lang.String resource, ParserFeedback feedback)
Creates a Parser object with the location of the resource (URL or file) You would typically create a DefaultHTMLParserFeedback object and pass it in.Parser(java.net.URLConnection connection, ParserFeedback fb)
Constructor for custom HTTP access.Parser(Lexer lexer, ParserFeedback fb)
Construct a parser using the provided lexer and feedback object. -
Uses of ParserFeedback in org.htmlparser.sax
Classes in org.htmlparser.sax that implement ParserFeedback Modifier and Type Class Description class
Feedback
Mediates between the feedback mechanism of the htmlparser and an error handler. -
Uses of ParserFeedback in org.htmlparser.util
Classes in org.htmlparser.util that implement ParserFeedback Modifier and Type Class Description class
DefaultParserFeedback
Default implementation of the HTMLParserFeedback interface.Fields in org.htmlparser.util declared as ParserFeedback Modifier and Type Field Description protected static ParserFeedback
FeedbackManager. callback
Methods in org.htmlparser.util with parameters of type ParserFeedback Modifier and Type Method Description static void
FeedbackManager. setParserFeedback(ParserFeedback feedback)
Constructors in org.htmlparser.util with parameters of type ParserFeedback Constructor Description IteratorImpl(Lexer lexer, ParserFeedback fb)
-