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