Uses of Interface
org.htmlparser.Text
-
Packages that use Text Package Description org.htmlparser The basic API classes which will be used by most developers when working with the HTML Parser.org.htmlparser.beans The beans package contains Java Beans using the HTML Parser.org.htmlparser.lexer The lexer package is the base level I/O subsystem.org.htmlparser.nodes The nodes package has the concrete node implementations.org.htmlparser.tags The tags package contains specific tags.org.htmlparser.visitors The visitors package contains classes that use the Visitor pattern. -
-
Uses of Text in org.htmlparser
Fields in org.htmlparser declared as Text Modifier and Type Field Description protected Text
PrototypicalNodeFactory. mText
The prototypical text node.Methods in org.htmlparser that return Text Modifier and Type Method Description Text
NodeFactory. createStringNode(Page page, int start, int end)
Create a new text node.Text
PrototypicalNodeFactory. createStringNode(Page page, int start, int end)
Create a new string node.Text
PrototypicalNodeFactory. getTextPrototype()
Get the object that is cloned to generate text nodes.Methods in org.htmlparser with parameters of type Text Modifier and Type Method Description void
PrototypicalNodeFactory. setTextPrototype(Text text)
Set the object to be used to generate text nodes. -
Uses of Text in org.htmlparser.beans
Methods in org.htmlparser.beans with parameters of type Text Modifier and Type Method Description void
StringBean. visitStringNode(Text string)
Appends the text to the output. -
Uses of Text in org.htmlparser.lexer
Methods in org.htmlparser.lexer that return Text Modifier and Type Method Description Text
Lexer. createStringNode(Page page, int start, int end)
Create a new string node. -
Uses of Text in org.htmlparser.nodes
Classes in org.htmlparser.nodes that implement Text Modifier and Type Class Description class
TextNode
Normal text in the HTML document is represented by this class. -
Uses of Text in org.htmlparser.tags
Methods in org.htmlparser.tags that return Text Modifier and Type Method Description Text[]
CompositeTag. digupStringNode(java.lang.String searchText)
Finds a text node, however embedded it might be, and returns it. -
Uses of Text in org.htmlparser.visitors
Methods in org.htmlparser.visitors with parameters of type Text Modifier and Type Method Description void
NodeVisitor. visitStringNode(Text string)
Called for eachStringNode
visited.void
StringFindingVisitor. visitStringNode(Text stringNode)
void
TextExtractingVisitor. visitStringNode(Text stringNode)
void
UrlModifyingVisitor. visitStringNode(Text stringNode)
-