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

Packages that use TransformationRule
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   
org.eclipse.mofscript.runtime.expression   
org.eclipse.mofscript.runtime.traceability   
 

Uses of TransformationRule in org.eclipse.mofscript.MOFScriptModel
 

Methods in org.eclipse.mofscript.MOFScriptModel that return TransformationRule
 TransformationRule MOFScriptModelFactory.createTransformationRule()
          Returns a new object of class 'Transformation Rule'
 TransformationRule TransformationRule.getExtends()
          Returns the value of the 'Extends' reference
 

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

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

Classes in org.eclipse.mofscript.MOFScriptModel.impl that implement TransformationRule
 class TransformationRuleImpl
          An implementation of the model object 'Transformation Rule'
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl that return TransformationRule
 TransformationRule TransformationRuleImpl.basicGetExtends()
           
 TransformationRule MOFScriptModelFactoryImpl.createTransformationRule()
           
 TransformationRule TransformationRuleImpl.getExtends()
           
 

Methods in org.eclipse.mofscript.MOFScriptModel.impl with parameters of type TransformationRule
 void TransformationRuleImpl.setExtends(TransformationRule newExtends)
           
 

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

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

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

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

Uses of TransformationRule in org.eclipse.mofscript.parser
 

Methods in org.eclipse.mofscript.parser that return TransformationRule
 TransformationRule MofScript2Parser.abstractTransformationRule()
           
 TransformationRule MofScript2Parser.normalTransformationRule()
           
 TransformationRule MofScript2Parser.transformationRule()
           
 

Methods in org.eclipse.mofscript.parser with parameters of type TransformationRule
 void MofScriptModelChecker.checkTransformationRule(TransformationRule rule, boolean postCheck)
          Checks a transformation rule for type usages, rule invocations etc
 

Uses of TransformationRule in org.eclipse.mofscript.runtime
 

Methods in org.eclipse.mofscript.runtime that return TransformationRule
 TransformationRule TransformationProxy.getEntryPoint()
          Traverses the rules and checks if entrypoint
 TransformationRule TransformationProxy.getImportedTransformationRule(java.lang.String name, java.lang.String possibleScoping, java.lang.String ownerTransformation)
          Gets a transformation rule according to the parameters
 TransformationRule RuleExecutor.getRule()
           
 TransformationRule TransformationProxy.getTransformationRule(java.lang.String name)
          Gets the transformation rules based on "name"
 TransformationRule ExecutionManager.getTransformationRule2(java.lang.String name, java.lang.String possibleScope, java.lang.String ownerTransformation)
          Deprecated.  
 TransformationRule TransformationProxy.getTransformationRuleForType(FunctionCall f, java.lang.String name, java.lang.String ownerTransformation, java.lang.String possibleScope, java.lang.Object contextObject)
          Gets the transformation rule according to the parameters given
 

Methods in org.eclipse.mofscript.runtime that return types with arguments of type TransformationRule
 java.util.Collection<TransformationRule> TransformationProxy.getAllImportedTransformationRules()
          Gets all teh imported transformation rules
 java.util.Collection<TransformationRule> TransformationProxy.getAllTransformationRules(java.lang.String name)
          Gets all the transformation rules with the given "name"
 java.util.Hashtable<java.lang.String,TransformationRule> TransformationProxy.getImportedTransformationRule(java.lang.String name)
          Gets all the importet transformation rules with a given name
 java.util.Collection<TransformationRule> TransformationProxy.getTransformationRules()
          Gets the transformation rules
 

Methods in org.eclipse.mofscript.runtime with parameters of type TransformationRule
 MOFScriptTransformation TransformationProxy.getClosestSuperWithRule(TransformationRule rule)
           
 boolean TransformationProxy.hasOtherRuleWithName(TransformationRule rule)
           
 

Constructors in org.eclipse.mofscript.runtime with parameters of type TransformationRule
RuleExecutor(TransformationRule rule, ExecutionManager execMgr)
          Constructor
 

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

Methods in org.eclipse.mofscript.runtime.expression that return TransformationRule
 TransformationRule ExpressionEvaluator.getOwnerRule()
           
 

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

Constructors in org.eclipse.mofscript.runtime.traceability with parameters of type TransformationRule
TraceabilityRuleExecutor(TransformationRule rule, ExecutionManager execMgr)