Uses of Interface
org.htmlcleaner.HtmlNode
Packages that use HtmlNode
-
Uses of HtmlNode in org.htmlcleaner
Classes in org.htmlcleaner that implement HtmlNodeModifier and TypeClassDescriptionclass
class
class
HTML comment token.class
HTML text token.class
HTML doctype token.class
HTML tag end token.(package private) class
ATagNode
that only really holds whitespace or comments - allows usingContentNode
in places where aTagNode
is expected.private class
Used to implement serialization with missing envelope - omiting open and close tags, just serialize children.class
XML node tag - basic node of the cleaned HTML tree.class
HTML tag token - descendants are start (TagNode) and end token (EndTagToken).Methods in org.htmlcleaner with parameters of type HtmlNodeModifier and TypeMethodDescriptionint
TagNode.getChildIndex
(HtmlNode child) void
void
Callback for when a node is first visited.void
TagNode.insertChild
(int index, HtmlNode childToAdd) Inserts specified node at specified position in array of childrenvoid
TagNode.insertChildAfter
(HtmlNode node, HtmlNode nodeToInsert) Inserts specified node in the list of children after specified childvoid
TagNode.insertChildBefore
(HtmlNode node, HtmlNode nodeToInsert) Inserts specified node in the list of children before specified childvoid
void
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
Action to be performed on single node in the tree