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

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

Uses of Variable in org.eclipse.mofscript.editor
 

Method parameters in org.eclipse.mofscript.editor with type arguments of type Variable
 void MofScriptTextEditor.debugEntered(java.util.List<Variable> vars, int line)
           
 

Uses of Variable in org.eclipse.mofscript.runtime
 

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

Methods in org.eclipse.mofscript.runtime that return types with arguments of type Variable
 java.util.Collection<Variable> ExecutionEnvironment.getVariables()
           
 

Methods in org.eclipse.mofscript.runtime with parameters of type Variable
 void ExecutionEnvironment.addVariable(Variable var)
          adds a variable
 java.lang.Object ExecutionEnvironment.getVariableImplementation(Variable var)
           
 void ExecutionEnvironment.removeVariable(Variable var)
          Removes a given VariableDeclaration from the collection
 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
 

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