限定符和类型 | 方法和说明 |
---|---|
NodeList |
Parser.extractAllNodesThatMatch(NodeFilter filter)
Extract all nodes matching the given filter.
|
NodeList |
Node.getChildren()
Get the children of this node.
|
NodeList |
Parser.parse(NodeFilter filter) |
限定符和类型 | 方法和说明 |
---|---|
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.
|
限定符和类型 | 方法和说明 |
---|---|
NodeList |
FilterBean.getNodes()
Return the nodes of the URL matching the filter.
|
限定符和类型 | 方法和说明 |
---|---|
NodeList |
AbstractNode.getChildren()
Get the children of this node.
|
限定符和类型 | 方法和说明 |
---|---|
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.
|
构造器和说明 |
---|
HtmlTreeModel(NodeList root)
Create an HTML tree view.
|
限定符和类型 | 方法和说明 |
---|---|
Tag |
TagScanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Scan the tag.
|
Tag |
StyleScanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Scan for style definitions.
|
Tag |
ScriptScanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Scan for script.
|
Tag |
Scanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Scan the tag.
|
Tag |
CompositeTagScanner.scan(Tag tag,
Lexer lexer,
NodeList stack)
Collect the children.
|
限定符和类型 | 方法和说明 |
---|---|
NodeList |
FormTag.getFormInputs()
Get the list of input fields.
|
NodeList |
FormTag.getFormTextareas()
Get the list of text areas.
|
NodeList |
FrameSetTag.getFrames()
Returns the frames.
|
NodeList |
CompositeTag.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 tags
|
NodeList |
CompositeTag.searchFor(java.lang.String searchString)
Searches for all nodes whose text representation contains the search string.
|
NodeList |
CompositeTag.searchFor(java.lang.String searchString,
boolean caseSensitive)
Searches for all nodes whose text representation contains the search string.
|
NodeList |
CompositeTag.searchFor(java.lang.String searchString,
boolean caseSensitive,
java.util.Locale locale)
Searches for all nodes whose text representation contains the search string.
|
限定符和类型 | 方法和说明 |
---|---|
void |
CompositeTag.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.
|
void |
FrameSetTag.setFrames(NodeList frames)
Sets the frames (children of this tag).
|
限定符和类型 | 方法和说明 |
---|---|
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.
|
限定符和类型 | 方法和说明 |
---|---|
void |
NodeList.add(NodeList list)
Add another node list to this one.
|
限定符和类型 | 方法和说明 |
---|---|
NodeList |
HtmlPage.getBody() |