Uses of Class
nu.validator.saxtree.Node

Packages that use Node
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
 class CDATA
           
 class Characters
           
 class CharBufferNode
           
 class Comment
           
 class Document
           
 class DocumentFragment
           
 class DTD
           
 class Element
           
 class Entity
           
 class IgnorableWhitespace
           
 class ParentNode
           
 class ProcessingInstruction
           
 class SkippedEntity
           
 

Fields in nu.validator.saxtree declared as Node
private  Node ParentNode.firstChild
           
private  Node ParentNode.lastChild
           
private  Node Node.nextSibling
           
 

Methods in nu.validator.saxtree that return Node
 Node ParentNode.appendChild(Node child)
           
 Node ParentNode.getFirstChild()
          Returns the firstChild.
 Node Node.getFirstChild()
           
 Node ParentNode.getLastChild()
          Returns the lastChild.
 Node Node.getNextSibling()
          Returns the nextSibling.
 Node ParentNode.insertBefore(Node child, Node sibling)
           
 

Methods in nu.validator.saxtree with parameters of type Node
 Node ParentNode.appendChild(Node child)
           
 void ParentNode.appendChildren(Node parent)
           
 Node ParentNode.insertBefore(Node child, Node sibling)
           
 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)
           
(package private)  void Node.setNextSibling(Node nextSibling)
          Sets the nextSibling.