Uses of Interface
xjavadoc.Node

Packages that use Node
xjavadoc   
 

Uses of Node in xjavadoc
 

Classes in xjavadoc that implement Node
 class SimpleNode
           
 

Fields in xjavadoc declared as Node
protected  Node[] SimpleNode.children
           
protected  Node SimpleNode.parent
           
 

Methods in xjavadoc that return Node
 Node SimpleNode.jjtGetChild(int i)
           
 Node Node.jjtGetChild(int i)
          This method returns a child node.
 Node SimpleNode.jjtGetParent()
           
 Node Node.jjtGetParent()
           
(package private)  Node JJTNodeParserState.peekNode()
           
(package private)  Node JJTNodeParserState.popNode()
           
(package private)  Node JJTNodeParserState.rootNode()
           
 

Methods in xjavadoc with parameters of type Node
(package private)  void JJTNodeParserState.clearNodeScope(Node n)
           
(package private)  void JJTNodeParserState.closeNodeScope(Node n, boolean condition)
           
(package private)  void JJTNodeParserState.closeNodeScope(Node n, int num)
           
 void SimpleNode.jjtAddChild(Node n, int i)
           
 void Node.jjtAddChild(Node n, int i)
          This method tells the node to add its argument to the node's list of children.
 void SimpleNode.jjtSetParent(Node n)
           
 void Node.jjtSetParent(Node n)
          This pair of methods are used to inform the node of its parent.
(package private)  void JJTNodeParserState.openNodeScope(Node n)
           
(package private)  void JJTNodeParserState.pushNode(Node n)