Uses of Interface
org.htmlparser.NodeFactory
-
Packages that use NodeFactory Package Description org.htmlparser The basic API classes which will be used by most developers when working with the HTML Parser.org.htmlparser.lexer The lexer package is the base level I/O subsystem. -
-
Uses of NodeFactory in org.htmlparser
Classes in org.htmlparser that implement NodeFactory Modifier and Type Class Description class
PrototypicalNodeFactory
A node factory based on the prototype pattern.Methods in org.htmlparser that return NodeFactory Modifier and Type Method Description NodeFactory
Parser. getNodeFactory()
Get the current node factory.Methods in org.htmlparser with parameters of type NodeFactory Modifier and Type Method Description void
Parser. setNodeFactory(NodeFactory factory)
Set the current node factory. -
Uses of NodeFactory in org.htmlparser.lexer
Classes in org.htmlparser.lexer that implement NodeFactory Modifier and Type Class Description class
Lexer
This class parses the HTML stream into nodes.Fields in org.htmlparser.lexer declared as NodeFactory Modifier and Type Field Description protected NodeFactory
Lexer. mFactory
The factory for new nodes.Methods in org.htmlparser.lexer that return NodeFactory Modifier and Type Method Description NodeFactory
Lexer. getNodeFactory()
Get the current node factory.Methods in org.htmlparser.lexer with parameters of type NodeFactory Modifier and Type Method Description void
Lexer. setNodeFactory(NodeFactory factory)
Set the current node factory.
-