Uses of Interface
org.htmlparser.Text
Packages that use Text
Package
Description
The basic API classes which will be used by most developers when working with
the HTML Parser.
The beans package contains Java Beans using the HTML Parser.
The lexer package is the base level I/O subsystem.
The nodes package has the concrete node implementations.
The tags package contains specific tags.
The visitors package contains classes that use the Visitor pattern.
-
Uses of Text in org.htmlparser
Fields in org.htmlparser declared as TextModifier and TypeFieldDescriptionprotected Text
PrototypicalNodeFactory.mText
The prototypical text node.Methods in org.htmlparser that return TextModifier and TypeMethodDescriptionNodeFactory.createStringNode
(Page page, int start, int end) Create a new text node.PrototypicalNodeFactory.createStringNode
(Page page, int start, int end) Create a new string node.PrototypicalNodeFactory.getTextPrototype()
Get the object that is cloned to generate text nodes.Methods in org.htmlparser with parameters of type TextModifier and TypeMethodDescriptionvoid
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 TextModifier and TypeMethodDescriptionvoid
StringBean.visitStringNode
(Text string) Appends the text to the output. -
Uses of Text in org.htmlparser.lexer
Methods in org.htmlparser.lexer that return TextModifier and TypeMethodDescriptionLexer.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 TextModifier and TypeClassDescriptionclass
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 TextModifier and TypeMethodDescriptionText[]
CompositeTag.digupStringNode
(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 TextModifier and TypeMethodDescriptionvoid
NodeVisitor.visitStringNode
(Text string) Called for eachStringNode
visited.void
StringFindingVisitor.visitStringNode
(Text stringNode) void
TextExtractingVisitor.visitStringNode
(Text stringNode) void
UrlModifyingVisitor.visitStringNode
(Text stringNode)