Uses of Class
lij.model.ArgumentVariable

Packages that use ArgumentVariable
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 ArgumentVariable in lij.model
 

Fields in lij.model declared as ArgumentVariable
private  ArgumentVariable ConstraintAssignment.argument1
           
private  ArgumentVariable ConstraintList.head
           
private  ArgumentVariable ConstraintList.list
           
private  ArgumentVariable ConstraintList.tail
           
 

Methods in lij.model that return ArgumentVariable
 ArgumentVariable ConstraintAssignment.getArgument1()
          Accessor.
 ArgumentVariable ConstraintList.getHead()
          Accessor.
 ArgumentVariable ConstraintList.getList()
          Accessor.
 ArgumentVariable ConstraintList.getTail()
          Accessor.
 

Constructors in lij.model with parameters of type ArgumentVariable
ConstraintAssignment(ArgumentVariable _argument1, Argument _argument2)
          Constructor.
ConstraintList(ArgumentVariable _list, ArgumentVariable _head, ArgumentVariable _tail)
          Constructor.
 

Uses of ArgumentVariable in lij.parser
 

Methods in lij.parser that return ArgumentVariable
 ArgumentVariable Parser.argumentVariable()
           
 

Uses of ArgumentVariable in lij.runtime
 

Methods in lij.runtime with parameters of type ArgumentVariable
 java.io.Serializable SymbolTable.get(ArgumentVariable variable)
          Retrieves the value of the specified variable from the SymbolTable.
 void SymbolTable.put(ArgumentVariable variable, java.io.Serializable value)
          Stores the specified variable and its associated value into the SymbolTable.
 void ClauseInstance.storeVariable(ArgumentVariable variable, java.io.Serializable value)
          Convenience method for storing a variable and its associated value into the SymbolTable of this ClauseInstance.