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 Node
SAXTreeBuilder.cachedTable
private Node
SAXTreeBuilder.cachedTablePreviousSibling
Methods 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 class
A CDATA section.final class
A run of charactersclass
A common superclass for character buffer node classes.final class
A comment.final class
A document.final class
A document fragment.final class
A doctype.final class
An element.final class
An entity.final class
A run ignorable whitespace.class
Common superclass for parent nodes.final class
A processing instruction.final class
A skipped entity.Fields in nu.validator.saxtree declared as NodeModifier and TypeFieldDescriptionprivate Node
ParentNode.firstChild
The first child.private Node
ParentNode.lastChild
The last child (for efficiency).private Node
Node.nextSibling
The 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 Node
ParentNode.getFirstChild()
Returns the firstChild.final Node
ParentNode.getLastChild()
Returns the lastChild.final Node
Node.getNextSibling()
Returns the nextSibling.final Node
Node.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.void
ParentNode.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) void
Causes SAX events for the tree rooted at the argument to be emitted.(package private) void
ParentNode.removeChild
(Node node) Remove a child from this node.(package private) void
Node.setNextSibling
(Node nextSibling) Sets the nextSibling.