Uses of Interface
org.htmlcleaner.HtmlNode
-
-
Uses of HtmlNode in org.htmlcleaner
Classes in org.htmlcleaner that implement HtmlNode Modifier and Type Class Description classCommentNodeHTML comment token.classContentNodeHTML text token.private classSerializer.HeadlessTagNodeUsed to implement serialization with missing envelope - omiting open and close tags, just serialize children.classTagNodeXML node tag - basic node of the cleaned HTML tree.Methods in org.htmlcleaner with parameters of type HtmlNode Modifier and Type Method Description intTagNode. getChildIndex(HtmlNode child)voidTagNode. insertChild(int index, HtmlNode childToAdd)Inserts specified node at specified position in array of childrenvoidTagNode. insertChildAfter(HtmlNode node, HtmlNode nodeToInsert)Inserts specified node in the list of children after specified childvoidTagNode. insertChildBefore(HtmlNode node, HtmlNode nodeToInsert)Inserts specified node in the list of children before specified childvoidTagNode. replaceChild(HtmlNode childToReplace, HtmlNode replacement)Replaces specified child node with specified replacement node.booleanTagNodeVisitor. visit(TagNode parentNode, HtmlNode htmlNode)Action to be performed on single node in the tree
-