|
HTML Lexer Jar Home Page | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NodeList | |
|---|---|
| org.htmlparser | The basic API classes which will be used by most developers when working with the HTML Parser. |
| 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. |
| org.htmlparser.util | |
| Uses of NodeList in org.htmlparser |
|---|
| Methods in org.htmlparser that return NodeList | |
|---|---|
NodeList |
Node.getChildren()
Get the children of this node. |
| Methods in org.htmlparser with parameters of type NodeList | |
|---|---|
void |
Node.collectInto(NodeList list,
NodeFilter filter)
Collect this node and its child nodes into a list, provided the node satisfies the filtering criteria. |
void |
Node.setChildren(NodeList children)
Set the children of this node. |
| Uses of NodeList in org.htmlparser.nodes |
|---|
| Fields in org.htmlparser.nodes declared as NodeList | |
|---|---|
protected NodeList |
AbstractNode.children
The children of this node. |
| Methods in org.htmlparser.nodes that return NodeList | |
|---|---|
NodeList |
AbstractNode.getChildren()
Get the children of this node. |
| Methods in org.htmlparser.nodes with parameters of type NodeList | |
|---|---|
void |
AbstractNode.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. |
void |
AbstractNode.setChildren(NodeList children)
Set the children of this node. |
| Uses of NodeList in org.htmlparser.scanners |
|---|
| Methods in org.htmlparser.scanners with parameters of type NodeList | |
|---|---|
Tag |
TagScanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Scan the tag. |
Tag |
Scanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Scan the tag. |
| Uses of NodeList in org.htmlparser.util |
|---|
| Methods in org.htmlparser.util that return NodeList | |
|---|---|
NodeList |
NodeList.extractAllNodesThatMatch(NodeFilter filter)
Filter the list with the given filter non-recursively. |
NodeList |
NodeList.extractAllNodesThatMatch(NodeFilter filter,
boolean recursive)
Filter the list with the given filter. |
| Methods in org.htmlparser.util with parameters of type NodeList | |
|---|---|
void |
NodeList.add(NodeList list)
Add another node list to this one. |
|
© 2006 Derrick Oswald April 1, 2006
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| HTML Parser is an open source library released under Common Public License. |