Uses of Class
lij.runtime.AgentInstance

Packages that use AgentInstance
lij.model Classes that together constitute the data model of an LCC protocl. 
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 AgentInstance in lij.model
 

Methods in lij.model with parameters of type AgentInstance
private  void TreeNode.evaluate(Interpreter interpreter, AgentInstance agentInstance)
          Performs the evaluation of this node (and its children, recursively)
 Result.State TreeNode.getEvaluationResult(Interpreter interpreter, AgentInstance agentInstance)
          Returns the evaluation result of this node.
 

Uses of AgentInstance in lij.runtime
 

Fields in lij.runtime declared as AgentInstance
protected  AgentInstance DefInstance.agent
           
protected  AgentInstance ConstraintInstance.agentInstance
           
private  AgentInstance SpecialConstraints.agentInstance
           
 

Fields in lij.runtime with type parameters of type AgentInstance
private  java.util.ArrayList<AgentInstance> Interpreter.agents
           
 

Methods in lij.runtime that return AgentInstance
 AgentInstance Interpreter.getAgent(java.io.Serializable id)
          Locates and returns a pointer to the AgentInstance with the specified id.
 

Methods in lij.runtime that return types with arguments of type AgentInstance
 java.util.ArrayList<AgentInstance> Interpreter.getAgents()
          Accessor.
 

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

Constructors in lij.runtime with parameters of type AgentInstance
SpecialConstraints(Interpreter _interpreter, AgentInstance _agentInstance)
          Constructor.