com.ff.JEvaluator
Class JEvaluatorNodeExpr

java.lang.Object
  extended by com.ff.JEvaluator.JEvaluatorNodeBaseClass
      extended by com.ff.JEvaluator.JEvaluatorNodeExpr

public class JEvaluatorNodeExpr
extends JEvaluatorNodeBaseClass

Author:
fiorucci Implements the node for the binary tree of the evaluator object, to handle and evaluate mathematical expressions

Constructor Summary
JEvaluatorNodeExpr()
           
 
Method Summary
 JEvaluatorNodeBaseClass getLeft()
           
 JEvaluatorNodeBaseClass getRight()
           
 void setLeft(JEvaluatorNodeBaseClass left)
           
 void setRight(JEvaluatorNodeBaseClass right)
           
 
Methods inherited from class com.ff.JEvaluator.JEvaluatorNodeBaseClass
dump, getSymbol, getSymbolType, setSymbol, setSymbolType
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JEvaluatorNodeExpr

public JEvaluatorNodeExpr()
Method Detail

getLeft

public JEvaluatorNodeBaseClass getLeft()
Returns:
Returns the left.

setLeft

public void setLeft(JEvaluatorNodeBaseClass left)
Parameters:
left - The left to set.

getRight

public JEvaluatorNodeBaseClass getRight()
Returns:
Returns the right.

setRight

public void setRight(JEvaluatorNodeBaseClass right)
Parameters:
right - The right to set.