Uses of Interface
lij.model.Constraint

Packages that use Constraint
lij.model Classes that together constitute the data model of an LCC protocl. 
lij.parser The classes in this package constitute the parser of the interpreter, and were generated by javacc. 
lij.runtime These runtime classes are the ones that contain most of the code that is used during the execution of the IM by the interpreter. 
 

Uses of Constraint in lij.model
 

Classes in lij.model that implement Constraint
 class ConstraintAssignment
          This implementation of a Constraint is used to assign a value to a variable.
 class ConstraintComparison
          This implementation of a Constraint is used to perform a comparison between two arguments (values (including lists) or variables).
 class ConstraintList
          This implementation of a Constraint is used to extract the head from a list into another variable.
 class ConstraintMethod
          This implementation of a Constraint is used to call a constraint method.
 

Fields in lij.model with type parameters of type Constraint
protected  java.util.ArrayList<Constraint> Def.constraints
           
 

Methods in lij.model that return types with arguments of type Constraint
 java.util.ArrayList<Constraint> Def.getConstraints()
          Accessor.
 

Method parameters in lij.model with type arguments of type Constraint
 void Def.setConstraints(java.util.ArrayList<Constraint> _constraints)
          Accessor.
 

Uses of Constraint in lij.parser
 

Methods in lij.parser that return Constraint
 Constraint Parser.constraint()
           
 

Methods in lij.parser that return types with arguments of type Constraint
 java.util.ArrayList<Constraint> Parser.constraints()
           
 

Uses of Constraint in lij.runtime
 

Fields in lij.runtime declared as Constraint
protected  Constraint ConstraintInstance.constraint
           
 

Methods in lij.runtime with parameters of type Constraint
static ConstraintInstance ConstraintInstance.createConstraintInstance(Constraint _constraint, Interpreter _interpreter, AgentInstance _agentInstance)
          Factory method for creating an instance of a ConstraintInstance subclass.