Uses of Interface
org.inxar.jenesis.Variable

Packages that use Variable
com.inxar.jenesis Classes which implement Java language elements. 
org.inxar.jenesis Interfaces which abstract Java language elements (read the desciption below). 
 

Uses of Variable in com.inxar.jenesis
 

Methods in com.inxar.jenesis that return Variable
 Variable MVM.newVar(java.lang.String name)
           
 

Methods in com.inxar.jenesis with parameters of type Variable
 Assign MVM.newAssign(int type, Variable l, Expression r)
           
 Assign MVM.newAssign(Variable l, Expression r)
           
 

Uses of Variable in org.inxar.jenesis
 

Subinterfaces of Variable in org.inxar.jenesis
 interface Accessor
          Expression subinterface for expressions which access data including field accesses, array accesses, and method invocations.
 interface ArrayAccess
          Expression subinterface for array accesses.
 interface FieldAccess
          Expression subinterface for field accesses.
 interface Invoke
          Expression subinterface for method invocations (n-ary).
 

Methods in org.inxar.jenesis that return Variable
abstract  Variable VirtualMachine.newVar(java.lang.String name)
          Expression factory method which returns a new variable with the given name.
 Variable Assign.getVariable()
          Gets the lvalue.
 

Methods in org.inxar.jenesis with parameters of type Variable
abstract  Assign VirtualMachine.newAssign(int type, Variable left, Expression right)
          Expression factory method which returns a new assignment of the given type.
abstract  Assign VirtualMachine.newAssign(Variable left, Expression right)
          Expression factory method which returns a new assignment of the SIMPLE type.
 void Assign.setVariable(Variable variable)
          Sets the lvalue.