Uses of Class
de.upb.hni.vmagic.object.Variable

Packages that use Variable
de.upb.hni.vmagic.declaration Contains declaration meta classes. 
de.upb.hni.vmagic.object Contains VHDL object meta classes. 
de.upb.hni.vmagic.statement Contains sequential statement meta classes. 
 

Uses of Variable in de.upb.hni.vmagic.declaration
 

Constructors in de.upb.hni.vmagic.declaration with parameters of type Variable
VariableDeclaration(Variable... variables)
          Creates a new variable declaration.
 

Constructor parameters in de.upb.hni.vmagic.declaration with type arguments of type Variable
VariableDeclaration(java.util.List<Variable> variables)
          Creates a new variable declaration.
 

Uses of Variable in de.upb.hni.vmagic.object
 

Methods in de.upb.hni.vmagic.object that return types with arguments of type Variable
 java.util.List<Variable> VariableGroup.getElements()
          Returns the variables in this group.
 java.util.List<Variable> Variable.getVhdlObjects()
           
 java.util.List<Variable> VariableGroup.getVhdlObjects()
           
 

Constructors in de.upb.hni.vmagic.object with parameters of type Variable
VariableGroup(Variable... variables)
          Creates a group of variables.
 

Constructor parameters in de.upb.hni.vmagic.object with type arguments of type Variable
VariableGroup(java.util.List<Variable> variables)
          Creates a group of variables.
 

Uses of Variable in de.upb.hni.vmagic.statement
 

Methods in de.upb.hni.vmagic.statement that return types with arguments of type Variable
 Target<Variable> VariableAssignment.getTarget()
          Returns the variable assignement target.
 

Method parameters in de.upb.hni.vmagic.statement with type arguments of type Variable
 void VariableAssignment.setTarget(Target<Variable> target)
          Sets the variable assignment target.
 

Constructor parameters in de.upb.hni.vmagic.statement with type arguments of type Variable
VariableAssignment(Target<Variable> target, Expression value)
          Creates a variable assignment.