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

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

Methods in cdx.scorebot.scoring.logic that return Identifier
 Identifier TestConfigValue.getConfigIdentifier()
          get test config option identifier
 Identifier TestResultValue.getResultIdentifier()
          get test result identifier
 

Methods in cdx.scorebot.scoring.logic with parameters of type Identifier
protected  void Context.addVariable(Identifier iden, Literal value)
          adds a variable to the context
 

Constructors in cdx.scorebot.scoring.logic with parameters of type Identifier
Assignment(Identifier varIden, OperatorType assignmentOperator, Expression value)
          instantiate an assignment statement
GenericMethod(Identifier methodName, Arguments args)
          instantiate a generic method call
Method(Identifier methodName, Arguments args)
          Instantiate a method call which returns a value.
TestConfigValue(TestIdentifier testIden, Identifier configIden)
          identifies a specific test configuration option
TestResultValue(TestIdentifier testIden, Identifier resultIden)
          identifies a specific test result
VariableInitialization(LiteralType type, Identifier iden, Expression exp)
          Construct a variable to be initialized
VoidMethod(Identifier methodName, Arguments args)
          instantiate an void method call
 

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

Methods in cdx.scorebot.scoring.logic.parser that return Identifier
 Identifier LogicParser.prIdentifier()
           
 Identifier LogicParser.prMethodIdentifier()
           
 Identifier LogicParser.prVoidMethodIdentifier()