Uses of Class
cdx.scorebot.scoring.logic.Expression

Packages that use Expression
cdx.scorebot.scoring.logic Contains the data structures used to hold and process the information parsed by the Scoring Logic lexical analyzer. 
cdx.scorebot.scoring.logic.parser Contains the Scoring Logic lexical analyzer and parser. 
 

Uses of Expression in cdx.scorebot.scoring.logic
 

Methods in cdx.scorebot.scoring.logic that return Expression
 Expression VariableInitialization.getVarValue()
          gets the name and initial value of this variable
 

Methods in cdx.scorebot.scoring.logic that return types with arguments of type Expression
protected  java.util.Vector<Expression> GenericMethod.getArgs()
          the args passed to the method, if any
 java.util.Vector<Expression> ArgumentList.getArgs()
          gets the expressions which define an argument list
 

Methods in cdx.scorebot.scoring.logic with parameters of type Expression
 void ArgumentList.add(Expression exp)
          adds an expression to the argument list
 

Constructors in cdx.scorebot.scoring.logic with parameters of type Expression
Assignment(Identifier varIden, OperatorType assignmentOperator, Expression value)
          instantiate an assignment statement
VariableInitialization(LiteralType type, Identifier iden, Expression exp)
          Construct a variable to be initialized
 

Uses of Expression in cdx.scorebot.scoring.logic.parser
 

Methods in cdx.scorebot.scoring.logic.parser that return Expression
 Expression LogicParser.prExpression()