Uses of Class
nu.validator.saxtree.Node
-
Packages that use Node Package Description nu.validator.htmlparser.sax This package provides an HTML5 parser that exposes the document through the SAX API.nu.validator.saxtree This package provides SAX Tree: a tree model optimized for creation from SAX events and replay as SAX events. -
-
Uses of Node in nu.validator.htmlparser.sax
Fields in nu.validator.htmlparser.sax declared as Node Modifier and Type Field Description private NodeSAXTreeBuilder. cachedTableprivate NodeSAXTreeBuilder. cachedTablePreviousSiblingMethods in nu.validator.htmlparser.sax that return Node Modifier and Type Method Description private NodeSAXTreeBuilder. previousSibling(Node table)Methods in nu.validator.htmlparser.sax with parameters of type Node Modifier and Type Method Description private NodeSAXTreeBuilder. previousSibling(Node table) -
Uses of Node in nu.validator.saxtree
Subclasses of Node in nu.validator.saxtree Modifier and Type Class Description classCDATAA CDATA section.classCharactersA run of charactersclassCharBufferNodeA common superclass for character buffer node classes.classCommentA comment.classDocumentA document.classDocumentFragmentA document fragment.classDTDA doctype.classElementAn element.classEntityAn entity.classIgnorableWhitespaceA run ignorable whitespace.classParentNodeCommon superclass for parent nodes.classProcessingInstructionA processing instruction.classSkippedEntityA skipped entity.Fields in nu.validator.saxtree declared as Node Modifier and Type Field Description private NodeParentNode. firstChildThe first child.private NodeParentNode. lastChildThe last child (for efficiency).private NodeNode. nextSiblingThe next sibling.Methods in nu.validator.saxtree that return Node Modifier and Type Method Description NodeParentNode. appendChild(Node child)Append a child to this node and return the child.NodeNode. getFirstChild()Return the first child.NodeParentNode. getFirstChild()Returns the firstChild.NodeParentNode. getLastChild()Returns the lastChild.NodeNode. getNextSibling()Returns the nextSibling.NodeNode. getPreviousSibling()Returns the previous siblingNodeParentNode. insertBefore(Node child, Node sibling)Insert a new child before a pre-existing child and return the newly inserted child.NodeParentNode. insertBetween(Node child, Node prev, Node next)Methods in nu.validator.saxtree with parameters of type Node Modifier and Type Method Description NodeParentNode. appendChild(Node child)Append a child to this node and return the child.voidParentNode. appendChildren(Node parent)Append the children of another node to this node removing them from the other node .NodeParentNode. insertBefore(Node child, Node sibling)Insert a new child before a pre-existing child and return the newly inserted child.NodeParentNode. insertBetween(Node child, Node prev, Node next)voidTreeParser. parse(Node node)Causes SAX events for the tree rooted at the argument to be emitted.(package private) voidParentNode. removeChild(Node node)Remove a child from this node.(package private) voidNode. setNextSibling(Node nextSibling)Sets the nextSibling.
-