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

Packages that use AdditiveExpression
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 AdditiveExpression in cdx.scorebot.scoring.logic
 

Methods in cdx.scorebot.scoring.logic with parameters of type AdditiveExpression
 void RelationalExpression.greater_than_or_equal(AdditiveExpression operand)
          compares this expression to this operand with the >= operator
 void RelationalExpression.greater_than(AdditiveExpression operand)
          compares this expression to this operand with the > operator
 void RelationalExpression.less_than_or_equal(AdditiveExpression operand)
          compares this expression to this operand with the <= operator
 void RelationalExpression.less_than(AdditiveExpression operand)
          compares this expression to this operand with the < operator
 

Constructors in cdx.scorebot.scoring.logic with parameters of type AdditiveExpression
RelationalExpression(AdditiveExpression leftOperand)
          instantiate the conditional expression
 

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

Methods in cdx.scorebot.scoring.logic.parser that return AdditiveExpression
 AdditiveExpression LogicParser.prAdditiveExpression()