Uses of Class
com.evelopers.unimod.core.stateworks.Model

Packages that use Model
com.evelopers.unimod.contract   
com.evelopers.unimod.core.stateworks   
com.evelopers.unimod.debug.debugger.console   
com.evelopers.unimod.debug.protocol.position   
com.evelopers.unimod.runtime.interpretation   
com.evelopers.unimod.transform.source   
com.evelopers.unimod.transform.xml   
 

Uses of Model in com.evelopers.unimod.contract
 

Methods in com.evelopers.unimod.contract with parameters of type Model
static StateMachine CoreContract.decodeStateMachine(Model model, java.lang.String stateMachine)
           
 

Uses of Model in com.evelopers.unimod.core.stateworks
 

Methods in com.evelopers.unimod.core.stateworks that return Model
static Model Model.createModel(java.lang.String name)
          Creates new model
 

Uses of Model in com.evelopers.unimod.debug.debugger.console
 

Constructors in com.evelopers.unimod.debug.debugger.console with parameters of type Model
ConsoleManager(Model model)
           
 

Uses of Model in com.evelopers.unimod.debug.protocol.position
 

Methods in com.evelopers.unimod.debug.protocol.position with parameters of type Model
 ModelElement TransitionCandidatePosition.getContainer(Model m)
           
 ModelElement TransitionCandidatePosition.getTarget(Model m)
           
 ModelElement SubmachinesExecutionPosition.getContainer(Model m)
           
 ModelElement SubmachinesExecutionPosition.getTarget(Model m)
           
abstract  ModelElement Position.getContainer(Model m)
          Returns container element for position.
abstract  ModelElement Position.getTarget(Model m)
          Returns target element of position.
 StateMachine Position.getStateMachine(Model m)
           
 ModelElement OutputActionExecutionPosition.getContainer(Model m)
           
 ModelElement OutputActionExecutionPosition.getTarget(Model m)
           
 ModelElement OnEnterActionExecutionPosition.getContainer(Model m)
           
 ModelElement OnEnterActionExecutionPosition.getTarget(Model m)
           
 ModelElement InputActionExecutionPosition.getContainer(Model m)
           
 ModelElement InputActionExecutionPosition.getTarget(Model m)
           
 ModelElement EventProcessingPosition.getContainer(Model m)
           
 ModelElement EventProcessingPosition.getTarget(Model m)
           
 ModelElement ComeToStatePosition.getContainer(Model m)
           
 ModelElement ComeToStatePosition.getTarget(Model m)
           
 

Uses of Model in com.evelopers.unimod.runtime.interpretation
 

Methods in com.evelopers.unimod.runtime.interpretation with parameters of type Model
 AbstractEventProcessor InterpretationHelper.createEventProcessor(Model model)
           
 InterpretationObjectsManager InterpretationHelper.createObjectsManager(Model model)
           
 ModelEngine InterpretationHelper.createBuildInModelEngine(Model model, ControlledObjectsMap controlledObjectsMap, boolean useEventQueue)
           
 ModelEngine InterpretationHelper.createStandAloneModelEngine(Model model, boolean useEventQueue)
           
 

Constructors in com.evelopers.unimod.runtime.interpretation with parameters of type Model
InterpretationObjectsManager(Model model)
           
InterpretationModelStructure(Model model)
           
InterpretationEventProcessor(Model model)
          Creates processor
 

Uses of Model in com.evelopers.unimod.transform.source
 

Methods in com.evelopers.unimod.transform.source with parameters of type Model
 void ModelToSource.generate(java.io.File jarFile, java.lang.String templateName, Model model, java.io.File outputFile, java.util.Map additionalParameters)
          Generates source file based on given template from given jar file
 void ModelToSource.generate(java.lang.String templateResourceName, Model model, java.io.File outputFile, java.util.Map additionalParameters)
          Generates source file based on given template from class path
 void ModelToSource.generate(java.io.File templateFile, Model model, java.io.File outputFile, java.util.Map additionalParameters)
          Generates source file based on given template file
 

Uses of Model in com.evelopers.unimod.transform.xml
 

Fields in com.evelopers.unimod.transform.xml declared as Model
protected  Model XMLToModel.model
           
 

Methods in com.evelopers.unimod.transform.xml that return Model
 Model XMLToModel.transform(java.io.InputStream source)
           
 Model XMLToModel.transform(java.io.InputStream source, org.xml.sax.XMLReader xmlReader)
           
protected  Model XMLToModel._transform(java.io.InputStream xml)
           
protected  Model XMLToModel._transform(java.io.InputStream xml, org.xml.sax.XMLReader xmlReader)
           
protected  Model XMLToModel.createModel(java.lang.String name)
           
static Model XMLToModel.load(java.io.InputStream is)
          Build in-memory model from given xml file.
static Model XMLToModel.loadAndCompile(java.io.InputStream is, org.xml.sax.XMLReader xmlReader)
          Read model from given URL and compiles it.
static Model XMLToModel.loadAndCompile(java.io.InputStream is)
          Read model from given URL and compiles it.
static Model XMLToModel.load(java.io.InputStream is, org.xml.sax.XMLReader xmlReader)
          Build in-memory model from given xml file.
 

Methods in com.evelopers.unimod.transform.xml with parameters of type Model
static void ModelToXML.write(Model model, java.io.OutputStream out)
           Transforms given StateMachine to Document and serializes it to given OutputStream.
 org.w3c.dom.Document ModelToXML.transform(Model source)