Uses of Class
org.htmlparser.lexer.Page
Packages that use Page
Package
Description
The basic API classes which will be used by most developers when working with
the HTML Parser.
The lexer package is the base level I/O subsystem.
The nodes package has the concrete node implementations.
The scanners package contains classes responsible for the tertiary
identification of tags.
-
Uses of Page in org.htmlparser
Methods in org.htmlparser that return PageMethods in org.htmlparser with parameters of type PageModifier and TypeMethodDescriptionNodeFactory.createRemarkNode
(Page page, int start, int end) Create a new remark node.PrototypicalNodeFactory.createRemarkNode
(Page page, int start, int end) Create a new remark node.NodeFactory.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.NodeFactory.createTagNode
(Page page, int start, int end, Vector attributes) Create a new tag node.PrototypicalNodeFactory.createTagNode
(Page page, int start, int end, Vector attributes) Create a new tag node.void
Set the page this node came from. -
Uses of Page in org.htmlparser.lexer
Fields in org.htmlparser.lexer declared as PageModifier and TypeFieldDescriptionprotected Page
Cursor.mPage
This cursor's page.protected Page
Lexer.mPage
The page lexemes are retrieved from.protected Page
PageAttribute.mPage
The page this attribute is extracted from.protected Page
PageIndex.mPage
The page associated with this index.Methods in org.htmlparser.lexer that return PageModifier and TypeMethodDescriptionCursor.getPage()
Get this cursor's page.Lexer.getPage()
Get the page this lexer is working on.PageAttribute.getPage()
Get the page this attribute is anchored to, if any.PageIndex.getPage()
Get this index's page.Methods in org.htmlparser.lexer with parameters of type PageModifier and TypeMethodDescriptionLexer.createRemarkNode
(Page page, int start, int end) Create a new remark node.Lexer.createStringNode
(Page page, int start, int end) Create a new string node.Lexer.createTagNode
(Page page, int start, int end, Vector attributes) Create a new tag node.void
Set the page this lexer is working on.void
Set the page this attribute is anchored to.Constructors in org.htmlparser.lexer with parameters of type PageModifierConstructorDescriptionConstruct aCursor
from the page and position given.Creates a new instance of a Lexer.PageAttribute
(Page page, int name_start, int name_end, int value_start, int value_end, char quote) Create an attribute.Create an empty index.Create an index with the one element given.Create an index with the elements given. -
Uses of Page in org.htmlparser.nodes
Fields in org.htmlparser.nodes declared as PageMethods in org.htmlparser.nodes that return PageMethods in org.htmlparser.nodes with parameters of type PageModifier and TypeMethodDescriptionvoid
Set the page this node came from.Constructors in org.htmlparser.nodes with parameters of type PageModifierConstructorDescriptionAbstractNode
(Page page, int start, int end) Create an abstract node with the page positions given.RemarkNode
(Page page, int start, int end) Constructor takes in the page and beginning and ending posns.Create a tag with the location and attributes providedConstructor takes in the page and beginning and ending posns. -
Uses of Page in org.htmlparser.scanners
Methods in org.htmlparser.scanners with parameters of type Page