Uses of Interface
xrel.parser.Node

Packages that use Node
xrel.parser Many classes here are generated by JavaCC / JJTree.  
 

Uses of Node in xrel.parser
 

Classes in xrel.parser that implement Node
 class ASTAs
           
 class ASTCase
           
 class ASTComma
           
 class ASTEmpty
           
 class ASTExportTp
           
 class ASTIdentifier
           
 class ASTImportSt
           
 class ASTOperator
           
 class ASTPar
           
 class ASTProgram
           
 class ASTStatementList
           
 class ASTString
           
 class ASTStringLiteral
           
 class ASTSwitchCase
           
 class ASTTag
           
 class ASTTypeDecl
           
 class SimpleNode
           
 

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

Methods in xrel.parser that return Node
 Node SimpleNode.jjtGetParent()
           
 Node SimpleNode.jjtGetChild(int i)
           
 Node Node.jjtGetParent()
          This method is used to get the parent of the node.
 Node Node.jjtGetChild(int i)
          This method returns a child node.
 

Methods in xrel.parser with parameters of type Node
 void SimpleNode.jjtSetParent(Node n)
           
 void SimpleNode.jjtAddChild(Node n, int i)
          Adds n to the children list of the current node.
 void SimpleNode.jjtmAddChildExt(Node n, int i)
          Calls jjtAddChild and sets the parent pointer of the child.
 void SimpleNode.jjtmMoveChildren(Node dst, int from, int upto)
          Moves children subset [from,upto] from this node to dst.
 void Node.jjtSetParent(Node n)
          This method is used to set the parent of the node.
 void Node.jjtAddChild(Node n, int i)
          This method tells the node to add its argument to the node's list of children.
protected  void SymTable.addClause(Node clause)
           
protected  void SymTable.setTypeSwNode(Node tswNode)
           
protected  void SymTable.setImportSt(Node impSt)