Uses of Class
nu.validator.saxtree.Node
Packages that use Node
Package
Description
This package provides an HTML5 parser that exposes the document through the SAX API.
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 NodeModifier and TypeFieldDescriptionprivate NodeSAXTreeBuilder.cachedTableprivate NodeSAXTreeBuilder.cachedTablePreviousSiblingMethods in nu.validator.htmlparser.sax that return NodeMethods in nu.validator.htmlparser.sax with parameters of type Node -
Uses of Node in nu.validator.saxtree
Subclasses of Node in nu.validator.saxtreeModifier and TypeClassDescriptionfinal classA CDATA section.final classA run of charactersclassA common superclass for character buffer node classes.final classA comment.final classA document.final classA document fragment.final classA doctype.final classAn element.final classAn entity.final classA run ignorable whitespace.classCommon superclass for parent nodes.final classA processing instruction.final classA skipped entity.Fields in nu.validator.saxtree declared as NodeModifier and TypeFieldDescriptionprivate NodeParentNode.firstChildThe first child.private NodeParentNode.lastChildThe last child (for efficiency).private NodeNode.nextSiblingThe next sibling.Methods in nu.validator.saxtree that return NodeModifier and TypeMethodDescriptionParentNode.appendChild(Node child) Append a child to this node and return the child.Node.getFirstChild()Return the first child.final NodeParentNode.getFirstChild()Returns the firstChild.final NodeParentNode.getLastChild()Returns the lastChild.final NodeNode.getNextSibling()Returns the nextSibling.final NodeNode.getPreviousSibling()Returns the previous siblingParentNode.insertBefore(Node child, Node sibling) Insert a new child before a pre-existing child and return the newly inserted child.ParentNode.insertBetween(Node child, Node prev, Node next) Methods in nu.validator.saxtree with parameters of type NodeModifier and TypeMethodDescriptionParentNode.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 .ParentNode.insertBefore(Node child, Node sibling) Insert a new child before a pre-existing child and return the newly inserted child.ParentNode.insertBetween(Node child, Node prev, Node next) voidCauses 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.