Uses of Interface
org.eclipse.mofscript.MOFScriptModel.VariableDeclaration

Packages that use VariableDeclaration
org.eclipse.mofscript.MOFScriptModel   
org.eclipse.mofscript.MOFScriptModel.impl   
org.eclipse.mofscript.MOFScriptModel.util   
org.eclipse.mofscript.parser   
org.eclipse.mofscript.runtime   
org.eclipse.mofscript.runtime.traceability   
 

Uses of VariableDeclaration in org.eclipse.mofscript.MOFScriptModel
 

Methods in org.eclipse.mofscript.MOFScriptModel that return VariableDeclaration
 VariableDeclaration MOFScriptModelFactory.createVariableDeclaration()
          Returns a new object of class 'Variable Declaration'
 VariableDeclaration VariableDeclarationStatement.getVariable()
          Returns the value of the 'Variable' reference
 

Methods in org.eclipse.mofscript.MOFScriptModel that return types with arguments of type VariableDeclaration
 org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptTransformation.getConstants()
          Returns the value of the 'Constants' containment reference list.
 org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptTransformation.getVariables()
          Returns the value of the 'Variables' containment reference list.
 org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptStatementOwner.getVariables()
          Returns the value of the 'Variables' containment reference list.
 

Methods in org.eclipse.mofscript.MOFScriptModel with parameters of type VariableDeclaration
 void VariableDeclarationStatement.setVariable(VariableDeclaration value)
          Sets the value of the 'Variable' reference
 

Uses of VariableDeclaration in org.eclipse.mofscript.MOFScriptModel.impl
 

Classes in org.eclipse.mofscript.MOFScriptModel.impl that implement VariableDeclaration
 class VariableDeclarationImpl
          An implementation of the model object 'Variable Declaration'
 

Fields in org.eclipse.mofscript.MOFScriptModel.impl declared as VariableDeclaration
protected  VariableDeclaration VariableDeclarationStatementImpl.variable
          The cached value of the 'Variable' reference
 

Fields in org.eclipse.mofscript.MOFScriptModel.impl with type parameters of type VariableDeclaration
protected  org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptTransformationImpl.constants
          The cached value of the 'Constants' containment reference list
protected  org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptTransformationImpl.variables
          The cached value of the 'Variables' containment reference list
protected  org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptStatementOwnerImpl.variables
          The cached value of the 'Variables' containment reference list
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return VariableDeclaration
 VariableDeclaration VariableDeclarationStatementImpl.basicGetVariable()
           
 VariableDeclaration MOFScriptModelFactoryImpl.createVariableDeclaration()
           
 VariableDeclaration VariableDeclarationStatementImpl.getVariable()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return types with arguments of type VariableDeclaration
 org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptTransformationImpl.getConstants()
           
 org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptTransformationImpl.getVariables()
           
 org.eclipse.emf.common.util.EList<VariableDeclaration> MOFScriptStatementOwnerImpl.getVariables()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl with parameters of type VariableDeclaration
 void VariableDeclarationStatementImpl.setVariable(VariableDeclaration newVariable)
           
 

Uses of VariableDeclaration in org.eclipse.mofscript.MOFScriptModel.util
 

Methods in org.eclipse.mofscript.MOFScriptModel.util with parameters of type VariableDeclaration
 T MOFScriptModelSwitch.caseVariableDeclaration(VariableDeclaration object)
          Returns the result of interpreting the object as an instance of 'Variable Declaration'
 

Uses of VariableDeclaration in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser that return VariableDeclaration
 VariableDeclaration MofScript2Parser.constantDeclaration()
           
 VariableDeclaration MofScriptModelChecker.findGlobalVariables(MOFScriptTransformation transformation, java.lang.String name)
          Finds global variables
protected  VariableDeclaration MofScriptModelChecker.getTempVar()
           
 VariableDeclaration MofScript2Parser.variableDeclaration()
           
 VariableDeclaration MofScript2Parser.variableOrConstantDeclaration()
           
 

Methods in org.eclipse.mofscript.parser with parameters of type VariableDeclaration
 void MofScriptModelChecker.checkVariableDeclaration(VariableDeclaration varDecl)
          Checks properties of the transformation
protected  MofScriptParseError MofScriptModelChecker.checkVariableUsage(VariableDeclaration var, java.lang.String functionCalled, FunctionCall fc)
          Check if the usage of a variable (e.g. a Hashtable var) is legal
 

Uses of VariableDeclaration in org.eclipse.mofscript.runtime
 

Method parameters in org.eclipse.mofscript.runtime with type arguments of type VariableDeclaration
 void ExecutionEnvironment.addModelVariables(java.util.List<VariableDeclaration> variables, MOFScriptObject owner)
           
 

Constructors in org.eclipse.mofscript.runtime with parameters of type VariableDeclaration
Variable(VariableDeclaration vd)
           
 

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

Methods in org.eclipse.mofscript.runtime.traceability with parameters of type VariableDeclaration
 void TraceabilityRuleExecutor.addVariables(java.lang.Object value, VariableDeclaration var)