Uses of Class
eece496.parsetree.ParseTree

Packages that use ParseTree
eece496   
eece496.gui   
eece496.parsetree   
 

Uses of ParseTree in eece496
 

Methods in eece496 with parameters of type ParseTree
 void Populator.populate(ParseTree p)
          recursive function.
static void LogicalManipulator.logicalManipulate(ParseTree p)
          main function for logical expression manipulation
 

Constructors in eece496 with parameters of type ParseTree
Populator(ParseTree p, SymbolHashtable s)
          Constructor
 

Uses of ParseTree in eece496.gui
 

Fields in eece496.gui declared as ParseTree
static ParseTree GuiDriverControl.theRoot
           
 

Uses of ParseTree in eece496.parsetree
 

Methods in eece496.parsetree that return ParseTree
static ParseTree ParseTree.T_condition(int thisType, java.lang.Object T1, java.lang.Object T2, java.lang.String T3)
          construct a Condition node
static ParseTree ParseTree.T_conditions(int thisType, java.lang.String T1, java.lang.Object T2, java.lang.Object T3)
          construct a Conditions node
static ParseTree ParseTree.T_req(int thisType, java.lang.Object T1, java.lang.Object T2, java.lang.Object T3, java.lang.String T4)
          construct a Requirement node
static ParseTree ParseTree.T_reqs(java.lang.Object T1, java.lang.Object T2)
          construct a Requirements node
static ParseTree ParseTree.T_stimOrResp(int thisType, java.lang.Object T1)
          construct a StimulusOrResponse node
 ParseTree ParseTree.getChild(int i)
          retrieve the node pointed by the child
 

Methods in eece496.parsetree with parameters of type ParseTree
 void ParseTree.setChild(int i, ParseTree p)
          set the value of child
 boolean ParseTree.equals(ParseTree p)
          compare whether this Parse Tree equal the contents of the node specified
 void ParseTree.clone(ParseTree p)
          clone the contents from a Parse Tree node
 

Constructors in eece496.parsetree with parameters of type ParseTree
ParseTree(ParseTree p)
          Constructor: Copy a ParseTree object to self
ParseTree(java.lang.String kind, int type, ParseTree child1, ParseTree child2, java.lang.Double ROID, java.lang.String text)
          Constructor: Create a ParseTree with give parameters