Uses of Class
nu.validator.saxtree.Node
-
Packages that use Node Package Description nu.validator.htmlparser.sax This package provides an HTML5 parser that exposes the document through the SAX API.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.htmlparser.sax
Fields in nu.validator.htmlparser.sax declared as Node Modifier and Type Field Description private Node
SAXTreeBuilder. cachedTable
private Node
SAXTreeBuilder. cachedTablePreviousSibling
Methods in nu.validator.htmlparser.sax that return Node Modifier and Type Method Description private Node
SAXTreeBuilder. previousSibling(Node table)
Methods in nu.validator.htmlparser.sax with parameters of type Node Modifier and Type Method Description private Node
SAXTreeBuilder. previousSibling(Node table)
-
Uses of Node in nu.validator.saxtree
Subclasses of Node in nu.validator.saxtree Modifier and Type Class Description class
CDATA
A CDATA section.class
Characters
A run of charactersclass
CharBufferNode
A common superclass for character buffer node classes.class
Comment
A comment.class
Document
A document.class
DocumentFragment
A document fragment.class
DTD
A doctype.class
Element
An element.class
Entity
An entity.class
IgnorableWhitespace
A run ignorable whitespace.class
ParentNode
Common superclass for parent nodes.class
ProcessingInstruction
A processing instruction.class
SkippedEntity
A skipped entity.Fields in nu.validator.saxtree declared as Node Modifier and Type Field Description private 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 Node Modifier and Type Method Description Node
ParentNode. appendChild(Node child)
Append a child to this node and return the child.Node
Node. getFirstChild()
Return the first child.Node
ParentNode. getFirstChild()
Returns the firstChild.Node
ParentNode. getLastChild()
Returns the lastChild.Node
Node. getNextSibling()
Returns the nextSibling.Node
Node. getPreviousSibling()
Returns the previous siblingNode
ParentNode. insertBefore(Node child, Node sibling)
Insert a new child before a pre-existing child and return the newly inserted child.Node
ParentNode. insertBetween(Node child, Node prev, Node next)
Methods in nu.validator.saxtree with parameters of type Node Modifier and Type Method Description Node
ParentNode. 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 .Node
ParentNode. insertBefore(Node child, Node sibling)
Insert a new child before a pre-existing child and return the newly inserted child.Node
ParentNode. insertBetween(Node child, Node prev, Node next)
void
TreeParser. parse(Node node)
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.
-