Uses of Class
nu.validator.saxtree.Node
Packages that use Node
Package
Description
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.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.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.