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 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.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.