Uses of Class
org.htmlparser.lexer.Page
-
Packages that use Page 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.org.htmlparser.nodes The nodes package has the concrete node implementations.org.htmlparser.scanners The scanners package contains classes responsible for the tertiary identification of tags. -
-
Uses of Page in org.htmlparser
Methods in org.htmlparser that return Page Modifier and Type Method Description PageNode. getPage()Get the page this node came from.Methods in org.htmlparser with parameters of type Page Modifier and Type Method Description RemarkNodeFactory. createRemarkNode(Page page, int start, int end)Create a new remark node.RemarkPrototypicalNodeFactory. createRemarkNode(Page page, int start, int end)Create a new remark node.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.TagNodeFactory. createTagNode(Page page, int start, int end, java.util.Vector attributes)Create a new tag node.TagPrototypicalNodeFactory. createTagNode(Page page, int start, int end, java.util.Vector attributes)Create a new tag node.voidNode. setPage(Page page)Set the page this node came from. -
Uses of Page in org.htmlparser.lexer
Fields in org.htmlparser.lexer declared as Page Modifier and Type Field Description protected PageCursor. mPageThis cursor's page.protected PageLexer. mPageThe page lexemes are retrieved from.protected PagePageAttribute. mPageThe page this attribute is extracted from.protected PagePageIndex. mPageThe page associated with this index.Methods in org.htmlparser.lexer that return Page Modifier and Type Method Description PageCursor. getPage()Get this cursor's page.PageLexer. getPage()Get the page this lexer is working on.PagePageAttribute. getPage()Get the page this attribute is anchored to, if any.PagePageIndex. getPage()Get this index's page.Methods in org.htmlparser.lexer with parameters of type Page Modifier and Type Method Description RemarkLexer. createRemarkNode(Page page, int start, int end)Create a new remark node.TextLexer. createStringNode(Page page, int start, int end)Create a new string node.TagLexer. createTagNode(Page page, int start, int end, java.util.Vector attributes)Create a new tag node.voidLexer. setPage(Page page)Set the page this lexer is working on.voidPageAttribute. setPage(Page page)Set the page this attribute is anchored to.Constructors in org.htmlparser.lexer with parameters of type Page Constructor Description Cursor(Page page, int offset)Construct aCursorfrom the page and position given.Lexer(Page page)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.PageIndex(Page page)Create an empty index.PageIndex(Page page, int cursor)Create an index with the one element given.PageIndex(Page page, int[] cursors)Create an index with the elements given. -
Uses of Page in org.htmlparser.nodes
Fields in org.htmlparser.nodes declared as Page Modifier and Type Field Description protected PageAbstractNode. mPageThe page this node came from.Methods in org.htmlparser.nodes that return Page Modifier and Type Method Description PageAbstractNode. getPage()Get the page this node came from.Methods in org.htmlparser.nodes with parameters of type Page Modifier and Type Method Description voidAbstractNode. setPage(Page page)Set the page this node came from.Constructors in org.htmlparser.nodes with parameters of type Page Constructor Description AbstractNode(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.TagNode(Page page, int start, int end, java.util.Vector attributes)Create a tag with the location and attributes providedTextNode(Page page, int start, int end)Constructor 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 Modifier and Type Method Description protected TagCompositeTagScanner. createVirtualEndTag(Tag tag, Lexer lexer, Page page, int position)Creates an end tag with the same name as the given tag.static java.lang.StringScriptDecoder. Decode(Page page, Cursor cursor)Decode script encoded by the Microsoft obfuscator.
-