Uses of Class
org.eclipse.mofscript.runtime.Variable

Packages that use Variable
org.eclipse.mofscript.editor.views   
org.eclipse.mofscript.runtime   
org.eclipse.mofscript.runtime.expression   
org.eclipse.mofscript.runtime.statement   
org.eclipse.mofscript.runtime.traceability   
 

Uses of Variable in org.eclipse.mofscript.editor.views
 

Method parameters in org.eclipse.mofscript.editor.views with type arguments of type Variable
static void MOFScriptDebugView.updateViewer(java.util.Collection<Variable> input)
           
 

Uses of Variable in org.eclipse.mofscript.runtime
 

Methods in org.eclipse.mofscript.runtime that return Variable
 Variable ExecutionEnvironment.findVariable(java.lang.String varName, org.eclipse.emf.ecore.EObject varContext)
          Searches for a given variable name
 Variable ExecutionEnvironment.getVariable(java.lang.String varName, org.eclipse.emf.ecore.EObject varContext)
          Fetches a variable by name
 

Methods in org.eclipse.mofscript.runtime that return types with arguments of type Variable
 java.util.List<Variable> TransformationProxy.getAllImportedVariables()
          Gets all variables
 java.util.Collection<Variable> ExecutionEnvironment.getVariables()
           
 java.util.List<Variable> TransformationProxy.getVariablesForTransformation(MOFScriptTransformation trans)
           
 

Methods in org.eclipse.mofscript.runtime with parameters of type Variable
 void ExecutionEnvironment.addVariable(Variable var)
           
 java.lang.Object ExecutionEnvironment.assignVariableValue(Variable var, java.lang.Object value, Expression assignedExpression, AssignmentOperator operator)
           
 boolean Variable.equalContext(Variable otherVar)
          Checks if the context of the variable is the same as another var
 java.lang.Object ExecutionEnvironment.getVariableImplementation(Variable var)
           
 void ExecutionEnvironment.removeVariable(Variable var)
          Removes a given Variable completely from the var storage
 void ExecutionEnvironment.setTypeForVariable(Variable varDecl, java.lang.Object varValue)
          Sets the type of a variable
 void ExecutionEnvironment.setVariable(java.lang.String varName, Variable val)
          Puts the variable into the _variables Hashtable
 

Method parameters in org.eclipse.mofscript.runtime with type arguments of type Variable
 void ExecutionEnvironment.addVariables(java.util.List<Variable> variables)
          Adds a list of variables (includes checking for exsistence)
 

Uses of Variable in org.eclipse.mofscript.runtime.expression
 

Methods in org.eclipse.mofscript.runtime.expression with parameters of type Variable
 void ReferenceEvaluator.variableModelRef(Variable var, java.lang.String refname)
           
 

Uses of Variable in org.eclipse.mofscript.runtime.statement
 

Methods in org.eclipse.mofscript.runtime.statement with parameters of type Variable
protected  void IteratorStatementExecutor.handleIntegerIterator(IteratorStatement itstatement, int intValue, java.lang.String forname, Variable iteratorVariable, ExecutionEnvironment itEnv, java.lang.Object rule_create)
          Iterator for an integer
protected  void IteratorStatementExecutor.handleStringIterator(IteratorStatement itstatement, java.lang.String strBuf, java.lang.String forname, Variable iteratorVariable, ExecutionEnvironment itEnv, java.lang.Object rule_create)
          Iterator for a String buffer
 

Method parameters in org.eclipse.mofscript.runtime.statement with type arguments of type Variable
 void DebugListener.debugEntered(java.util.Collection<Variable> vars, int line, java.lang.String uri)
           
 

Uses of Variable in org.eclipse.mofscript.runtime.traceability
 

Methods in org.eclipse.mofscript.runtime.traceability with parameters of type Variable
 void TraceabilityReferenceEvaluator.variableModelRef(Variable var, java.lang.String refname)