Uses of Interface
org.sintef.mofscript.MOFScriptModel.MOFScriptSpecification

Packages that use MOFScriptSpecification
org.sintef.mofscript.editor   
org.sintef.mofscript.MOFScriptModel   
org.sintef.mofscript.MOFScriptModel.impl   
org.sintef.mofscript.MOFScriptModel.util   
org.sintef.mofscript.parser   
org.sintef.mofscript.runtime   
 

Uses of MOFScriptSpecification in org.sintef.mofscript.editor
 

Methods in org.sintef.mofscript.editor that return MOFScriptSpecification
 MOFScriptSpecification MofScriptTextEditor.compile()
          Compiles the source
 MOFScriptSpecification ExecutionUtility.compile(org.eclipse.core.resources.IFile theFile, java.lang.String contents)
          Compiles a transformation.
 MOFScriptSpecification ExecutionUtility.getCurrentTransformation()
          Retrieves the current transformatation
 

Methods in org.sintef.mofscript.editor with parameters of type MOFScriptSpecification
protected  void ExecutionUtility.mofScriptTextToModel(org.eclipse.core.resources.IFile transformationFile, java.lang.String content, MOFScriptSpecification transformationSpec)
          Executes a MOFScript transformation of MOFScript input - based on textual MOFScript files
 void ExecutionUtility.storeMofScriptModel(MOFScriptSpecification transformation, org.eclipse.core.resources.IFile transformationFile)
          Stores a MOFScript transformation as a model
 

Uses of MOFScriptSpecification in org.sintef.mofscript.MOFScriptModel
 

Methods in org.sintef.mofscript.MOFScriptModel that return MOFScriptSpecification
 MOFScriptSpecification MOFScriptModelFactory.createMOFScriptSpecification()
          Returns a new object of class 'MOF Script Specification'
 

Uses of MOFScriptSpecification in org.sintef.mofscript.MOFScriptModel.impl
 

Classes in org.sintef.mofscript.MOFScriptModel.impl that implement MOFScriptSpecification
 class MOFScriptSpecificationImpl
          An implementation of the model object 'MOF Script Specification'
 

Methods in org.sintef.mofscript.MOFScriptModel.impl that return MOFScriptSpecification
 MOFScriptSpecification MOFScriptModelFactoryImpl.createMOFScriptSpecification()
           
 

Uses of MOFScriptSpecification in org.sintef.mofscript.MOFScriptModel.util
 

Methods in org.sintef.mofscript.MOFScriptModel.util with parameters of type MOFScriptSpecification
 java.lang.Object MOFScriptModelSwitch.caseMOFScriptSpecification(MOFScriptSpecification object)
          Returns the result of interpretting the object as an instance of 'MOF Script Specification'
 

Uses of MOFScriptSpecification in org.sintef.mofscript.parser
 

Fields in org.sintef.mofscript.parser declared as MOFScriptSpecification
protected  MOFScriptSpecification MofScriptModelChecker._transformationSpec
           
 

Methods in org.sintef.mofscript.parser that return MOFScriptSpecification
protected  MOFScriptSpecification ParserUtil.doParse(java.io.Reader in, boolean primary, boolean doPostCheck, java.lang.String uri)
          Performs the parsing of a transformation and included transformations
 MOFScriptSpecification MofScriptModelChecker.getTransformationSpecification()
           
 MOFScriptSpecification MofScriptParser.mofscriptSpecification()
          the root of a specification - one or more transformations
protected  MOFScriptSpecification ParserUtil.parse(java.io.File f)
           
 MOFScriptSpecification ParserUtil.parse(java.io.File f, boolean doPostCheck)
           
 MOFScriptSpecification ParserUtil.parse(java.lang.String str, boolean doPostCheck, java.lang.String uri)
          Parses the MOFScript specification 'str'
 MOFScriptSpecification ParserUtil.parse(java.lang.String str, java.lang.String uri)
          Parses the MOFScript specification 'str'
 

Methods in org.sintef.mofscript.parser with parameters of type MOFScriptSpecification
 MOFScriptTransformation MofScriptParser.mofscriptTransformation(MOFScriptSpecification spec)
          The root of a transformation
 void MofScriptParser.mofscriptTransformationBody(MOFScriptSpecification spec, MOFScriptTransformation transformation)
          the body of a transformation
 void MofScriptParser.mofscriptTransformationHeader(MOFScriptSpecification spec, MOFScriptTransformation transformation)
          the header (signature) of a transformation
 void MofScriptModelChecker.setTransformationSpecification(MOFScriptSpecification trModel)
           
 

Uses of MOFScriptSpecification in org.sintef.mofscript.runtime
 

Methods in org.sintef.mofscript.runtime that return MOFScriptSpecification
 MOFScriptSpecification TransformationProxy.getTransformationSpecification()
           
 MOFScriptSpecification ExecutionManager.getTransformationSpecification()
           
 

Methods in org.sintef.mofscript.runtime with parameters of type MOFScriptSpecification
 void TransformationProxy.setTransformationSpecification(MOFScriptSpecification trSpec)
          Sets the transformation specification
 void ExecutionManager.setTransformationSpecification(MOFScriptSpecification transformationSpec)
           
 

Constructors in org.sintef.mofscript.runtime with parameters of type MOFScriptSpecification
TransformationProxy(MOFScriptSpecification trSpec)