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

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

Methods in cdx.scorebot.scoring.logic with parameters of type ConditionalAndExpression
 void ConditionalOrExpression.or(ConditionalAndExpression operand)
          evaluates this expression OR'ed with this operand
 

Method parameters in cdx.scorebot.scoring.logic with type arguments of type ConditionalAndExpression
static boolean ConditionalOrExpression.evaluateOR(Context context, Literal leftOperand, java.util.Vector<ConditionalAndExpression> rightOperands)
          Returns the short-circuit evaluation of the expression leftOperand || rightOperands[0] || rightOperands[1] ...
 

Constructors in cdx.scorebot.scoring.logic with parameters of type ConditionalAndExpression
ConditionalOrExpression(ConditionalAndExpression leftOperand)
          instantiate the conditional OR expression
 

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

Methods in cdx.scorebot.scoring.logic.parser that return ConditionalAndExpression
 ConditionalAndExpression LogicParser.prConditionalAndExpression()