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 TextPrototypicalNodeFactory. mTextThe prototypical text node.Methods in org.htmlparser that return Text Modifier and Type Method Description TextNodeFactory. createStringNode(Page page, int start, int end)Create a new text node.TextPrototypicalNodeFactory. createStringNode(Page page, int start, int end)Create a new string node.TextPrototypicalNodeFactory. 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 voidPrototypicalNodeFactory. 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 voidStringBean. 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 TextLexer. 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 classTextNodeNormal 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 voidNodeVisitor. visitStringNode(Text string)Called for eachStringNodevisited.voidStringFindingVisitor. visitStringNode(Text stringNode)voidTextExtractingVisitor. visitStringNode(Text stringNode)voidUrlModifyingVisitor. visitStringNode(Text stringNode)
-