Uses of Class
org.htmlparser.util.NodeList
-
Packages that use NodeList 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.nodes The nodes package has the concrete node implementations.org.htmlparser.parserapplications.filterbuilder org.htmlparser.scanners The scanners package contains classes responsible for the tertiary identification of tags.org.htmlparser.tags The tags package contains specific tags.org.htmlparser.util Code which can be reused by many classes, is located in this package.org.htmlparser.visitors The visitors package contains classes that use the Visitor pattern. -
-
Uses of NodeList in org.htmlparser
Methods in org.htmlparser that return NodeList Modifier and Type Method Description NodeListParser. extractAllNodesThatMatch(NodeFilter filter)Extract all nodes matching the given filter.NodeListNode. getChildren()Get the children of this node.NodeListParser. parse(NodeFilter filter)Parse the given resource, using the filter provided.Methods in org.htmlparser with parameters of type NodeList Modifier and Type Method Description voidNode. collectInto(NodeList list, NodeFilter filter)Collect this node and its child nodes into a list, provided the node satisfies the filtering criteria.voidNode. setChildren(NodeList children)Set the children of this node. -
Uses of NodeList in org.htmlparser.beans
Fields in org.htmlparser.beans declared as NodeList Modifier and Type Field Description protected NodeListFilterBean. mNodesThe nodes extracted from the URL.Methods in org.htmlparser.beans that return NodeList Modifier and Type Method Description protected NodeListFilterBean. applyFilters()Apply each of the filters.NodeListFilterBean. getNodes()Return the nodes of the URL matching the filter.Methods in org.htmlparser.beans with parameters of type NodeList Modifier and Type Method Description protected voidFilterBean. updateNodes(NodeList nodes)Assign theNodesproperty, firing the property change. -
Uses of NodeList in org.htmlparser.nodes
Fields in org.htmlparser.nodes declared as NodeList Modifier and Type Field Description protected NodeListAbstractNode. childrenThe children of this node.Methods in org.htmlparser.nodes that return NodeList Modifier and Type Method Description NodeListAbstractNode. getChildren()Get the children of this node.Methods in org.htmlparser.nodes with parameters of type NodeList Modifier and Type Method Description voidAbstractNode. collectInto(NodeList list, NodeFilter filter)Collect this node and its child nodes (if-applicable) into the collectionList parameter, provided the node satisfies the filtering criteria.voidAbstractNode. setChildren(NodeList children)Set the children of this node. -
Uses of NodeList in org.htmlparser.parserapplications.filterbuilder
Constructors in org.htmlparser.parserapplications.filterbuilder with parameters of type NodeList Constructor Description HtmlTreeModel(NodeList root)Create an HTML tree view. -
Uses of NodeList in org.htmlparser.scanners
Methods in org.htmlparser.scanners with parameters of type NodeList Modifier and Type Method Description TagCompositeTagScanner. scan(Tag tag, Lexer lexer, NodeList stack)Collect the children.TagScanner. scan(Tag tag, Lexer lexer, NodeList stack)Scan the tag.TagScriptScanner. scan(Tag tag, Lexer lexer, NodeList stack)Scan for script.TagStyleScanner. scan(Tag tag, Lexer lexer, NodeList stack)Scan for style definitions.TagTagScanner. scan(Tag tag, Lexer lexer, NodeList stack)Scan the tag. -
Uses of NodeList in org.htmlparser.tags
Methods in org.htmlparser.tags that return NodeList Modifier and Type Method Description NodeListFormTag. getFormInputs()Get the list of input fields.NodeListFormTag. getFormTextareas()Get the list of text areas.NodeListFrameSetTag. getFrames()Returns the frames.NodeListCompositeTag. searchFor(java.lang.Class classType, boolean recursive)Collect all objects that are of a certain type Note that this will not check for parent types, and will not recurse through child tagsNodeListCompositeTag. searchFor(java.lang.String searchString)Searches for all nodes whose text representation contains the search string.NodeListCompositeTag. searchFor(java.lang.String searchString, boolean caseSensitive)Searches for all nodes whose text representation contains the search string.NodeListCompositeTag. searchFor(java.lang.String searchString, boolean caseSensitive, java.util.Locale locale)Searches for all nodes whose text representation contains the search string.Methods in org.htmlparser.tags with parameters of type NodeList Modifier and Type Method Description voidCompositeTag. collectInto(NodeList list, NodeFilter filter)Collect this node and its child nodes (if-applicable) into the list parameter, provided the node satisfies the filtering criteria.voidFrameSetTag. setFrames(NodeList frames)Sets the frames (children of this tag). -
Uses of NodeList in org.htmlparser.util
Methods in org.htmlparser.util that return NodeList Modifier and Type Method Description NodeListNodeList. extractAllNodesThatMatch(NodeFilter filter)Filter the list with the given filter non-recursively.NodeListNodeList. extractAllNodesThatMatch(NodeFilter filter, boolean recursive)Filter the list with the given filter.Methods in org.htmlparser.util with parameters of type NodeList Modifier and Type Method Description voidNodeList. add(NodeList list)Add another node list to this one. -
Uses of NodeList in org.htmlparser.visitors
Methods in org.htmlparser.visitors that return NodeList Modifier and Type Method Description NodeListHtmlPage. getBody()
-