Uses of Interface
com.jeffpalm.expr.Node

Packages that use Node
com.jeffpalm.expr   
 

Uses of Node in com.jeffpalm.expr
 

Classes in com.jeffpalm.expr that implement Node
 class ASTAdd
           
 class ASTAnd
           
 class ASTCall
           
 class ASTInteger
           
 class ASTMatch
           
 class ASTMult
           
 class ASTOr
           
 class ASTRel
           
 class ASTStart
           
 class ASTString
           
 class OpNode
           
 class SimpleNode
           
 

Fields in com.jeffpalm.expr declared as Node
protected  Node[] SimpleNode.children
           
protected  Node SimpleNode.parent
           
 

Methods in com.jeffpalm.expr 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()
           
 

Methods in com.jeffpalm.expr with parameters of type Node
 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.