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

Packages that use MOFScriptTransformation
org.eclipse.mofscript.MOFScriptModel   
org.eclipse.mofscript.MOFScriptModel.impl   
org.eclipse.mofscript.MOFScriptModel.util   
org.eclipse.mofscript.MOFScriptModel.validation   
org.eclipse.mofscript.parser   
org.eclipse.mofscript.runtime   
 

Uses of MOFScriptTransformation in org.eclipse.mofscript.MOFScriptModel
 

Subinterfaces of MOFScriptTransformation in org.eclipse.mofscript.MOFScriptModel
 interface MOFScriptAspect
          A representation of the model object 'MOF Script Aspect'
 

Methods in org.eclipse.mofscript.MOFScriptModel that return MOFScriptTransformation
 MOFScriptTransformation MOFScriptModelFactory.createMOFScriptTransformation()
          Returns a new object of class 'MOF Script Transformation'
 MOFScriptTransformation MOFScriptTransformation.getExtends()
          Returns the value of the 'Extends' reference
 MOFScriptTransformation TransformationRule.getOwner()
          Returns the value of the 'Owner' container reference.
 

Methods in org.eclipse.mofscript.MOFScriptModel with parameters of type MOFScriptTransformation
 void MOFScriptTransformation.setExtends(MOFScriptTransformation value)
          Sets the value of the 'Extends' reference
 void TransformationRule.setOwner(MOFScriptTransformation value)
          Sets the value of the 'Owner' container reference
 

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

Classes in org.eclipse.mofscript.MOFScriptModel.impl that implement MOFScriptTransformation
 class MOFScriptAspectImpl
          An implementation of the model object 'MOF Script Aspect'
 class MOFScriptTransformationImpl
          An implementation of the model object 'MOF Script Transformation'
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return MOFScriptTransformation
 MOFScriptTransformation MOFScriptTransformationImpl.basicGetExtends()
           
 MOFScriptTransformation MOFScriptModelFactoryImpl.createMOFScriptTransformation()
           
 MOFScriptTransformation MOFScriptTransformationImpl.getExtends()
           
 MOFScriptTransformation TransformationRuleImpl.getOwner()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl with parameters of type MOFScriptTransformation
 org.eclipse.emf.common.notify.NotificationChain TransformationRuleImpl.basicSetOwner(MOFScriptTransformation newOwner, org.eclipse.emf.common.notify.NotificationChain msgs)
           
 void MOFScriptTransformationImpl.setExtends(MOFScriptTransformation newExtends)
           
 void TransformationRuleImpl.setOwner(MOFScriptTransformation newOwner)
           
 

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

Methods in org.eclipse.mofscript.MOFScriptModel.util with parameters of type MOFScriptTransformation
 java.lang.Object MOFScriptModelSwitch.caseMOFScriptTransformation(MOFScriptTransformation object)
          Returns the result of interpreting the object as an instance of 'MOF Script Transformation'
 

Uses of MOFScriptTransformation in org.eclipse.mofscript.MOFScriptModel.validation
 

Methods in org.eclipse.mofscript.MOFScriptModel.validation with parameters of type MOFScriptTransformation
 boolean MOFScriptTransformationValidator.validateExtends(MOFScriptTransformation value)
           
 boolean TransformationRuleValidator.validateOwner(MOFScriptTransformation value)
           
 

Uses of MOFScriptTransformation in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser that return MOFScriptTransformation
 MOFScriptTransformation MofScriptModelChecker.getTransformationModel()
           
 MOFScriptTransformation MofScript2Parser.mofscriptDeclarationExtra()
           
 MOFScriptTransformation MofScript2Parser.mofscriptTransformation(MOFScriptSpecification spec)
           
 

Methods in org.eclipse.mofscript.parser with parameters of type MOFScriptTransformation
 void MofScriptModelChecker.addImportedTransformation(java.lang.String importName, java.lang.String importUri, MOFScriptTransformation importedTr)
          Add imported transformations
 VariableDeclaration MofScriptModelChecker.findGlobalVariables(MOFScriptTransformation transformation, java.lang.String name)
          Finds global variables
 boolean MofScriptModelChecker.isSuperTransformation(MOFScriptTransformation transformation, MOFScriptTransformation possibleSuper)
           
 java.util.Vector MofScript2Parser.mofscriptModuleDecl(MOFScriptTransformation transformationOwner)
           
 void MofScript2Parser.mofscriptTransformationBody(MOFScriptSpecification spec, MOFScriptTransformation transformation)
           
 void MofScript2Parser.mofscriptTransformationHeader(MOFScriptSpecification spec, MOFScriptTransformation transformation)
           
 void MofScriptModelChecker.setTransformationModel(MOFScriptTransformation transformation)
           
 

Uses of MOFScriptTransformation in org.eclipse.mofscript.runtime
 

Methods in org.eclipse.mofscript.runtime that return MOFScriptTransformation
 MOFScriptTransformation TransformationProxy.getClosestSuperWithRule(TransformationRule rule)
           
 MOFScriptTransformation TransformationProxy.getImportedTransformation(java.lang.String name)
          Gets an imported transfromation with name == parameter name
 MOFScriptTransformation ExecutionManager.getMofScript2TextTransformation()
          Returns the model representation of the MOFScript to Text transformation
 MOFScriptTransformation ExecutionManager.getMofScriptAspectTransformation()
           
 MOFScriptTransformation TransformationProxy.getTransformation()
           
 

Methods in org.eclipse.mofscript.runtime with parameters of type MOFScriptTransformation
 void TransformationProxy.addImportedTransformation(java.lang.String importName, java.lang.String importUri, MOFScriptTransformation importedTransformation)
          Adds imported transformations to a collection
static java.util.Set ExecutionManager.getAllSuperRuleNames(MOFScriptTransformation transformation)
           
static java.util.Set ExecutionManager.getAllSuperRules(MOFScriptTransformation transformation)
           
 boolean TransformationProxy.isSuperTransformation(MOFScriptTransformation transformation)
          Checks whether a transformation is a super transformation
 void ExecutionManager.setTransformationModel(MOFScriptTransformation transformation)
           
 

Constructors in org.eclipse.mofscript.runtime with parameters of type MOFScriptTransformation
TransformationProxy(MOFScriptTransformation realTrans)