int |
TagNode.getChildIndex(HtmlNode child) |
|
void |
DomBuilder.head(HtmlNode node,
int depth) |
|
void |
XmlVisitor.head(HtmlNode node,
int depth) |
Callback for when a node is first visited.
|
void |
TagNode.insertChild(int index,
HtmlNode childToAdd) |
Inserts specified node at specified position in array of children
|
void |
TagNode.insertChildAfter(HtmlNode node,
HtmlNode nodeToInsert) |
Inserts specified node in the list of children after specified child
|
void |
TagNode.insertChildBefore(HtmlNode node,
HtmlNode nodeToInsert) |
Inserts specified node in the list of children before specified child
|
void |
DomBuilder.tail(HtmlNode node,
int depth) |
|
void |
XmlVisitor.tail(HtmlNode node,
int depth) |
Callback for when a node is last visited, after all of its descendants have been visited.
|
static void |
XmlTraversor.traverse(XmlVisitor visitor,
HtmlNode root) |
Start a depth-first traverse of the root and all of its descendants.
|
boolean |
TagNodeVisitor.visit(TagNode parentNode,
HtmlNode htmlNode) |
Action to be performed on single node in the tree
|