Uses of Interface
com.evelopers.unimod.runtime.context.StateMachineContext.Context

Packages that use StateMachineContext.Context
com.evelopers.unimod.core.stateworks   
com.evelopers.unimod.debug.protocol   
com.evelopers.unimod.runtime.context   
 

Uses of StateMachineContext.Context in com.evelopers.unimod.core.stateworks
 

Methods in com.evelopers.unimod.core.stateworks with parameters of type StateMachineContext.Context
 void Event.addParametersToContext(StateMachineContext.Context context)
          Adds all parameters to given context.
 

Uses of StateMachineContext.Context in com.evelopers.unimod.debug.protocol
 

Methods in com.evelopers.unimod.debug.protocol that return StateMachineContext.Context
 StateMachineContext.Context JavaSpecificMessageCoder.StateMachineContextImpl1.getApplicationContext()
           
 StateMachineContext.Context JavaSpecificMessageCoder.StateMachineContextImpl1.getUserContext()
           
 StateMachineContext.Context JavaSpecificMessageCoder.StateMachineContextImpl1.getEventContext()
           
 

Methods in com.evelopers.unimod.debug.protocol with parameters of type StateMachineContext.Context
protected  void JavaSpecificMessageCoder.makeSerializableCopy(StateMachineContext.Context oldCtx, StateMachineContext.Context newCtx)
          Replace all not serializable objects with it's serializable handles
 

Uses of StateMachineContext.Context in com.evelopers.unimod.runtime.context
 

Classes in com.evelopers.unimod.runtime.context that implement StateMachineContext.Context
static class StateMachineContextImpl.ContextImpl
           
 

Methods in com.evelopers.unimod.runtime.context that return StateMachineContext.Context
 StateMachineContext.Context StateMachineContextImpl.getApplicationContext()
           
 StateMachineContext.Context StateMachineContextImpl.getUserContext()
           
 StateMachineContext.Context StateMachineContextImpl.getEventContext()
           
 StateMachineContext.Context StateMachineContext.getApplicationContext()
          Must return application context
 StateMachineContext.Context StateMachineContext.getUserContext()
          Must return user context
 StateMachineContext.Context StateMachineContext.getEventContext()
          Must return event context
 

Methods in com.evelopers.unimod.runtime.context with parameters of type StateMachineContext.Context
 void Parameter.addToContext(StateMachineContext.Context context)
          Method addToContext adds parameter to given context.
 

Constructors in com.evelopers.unimod.runtime.context with parameters of type StateMachineContext.Context
StateMachineContextImpl(StateMachineContext.Context app, StateMachineContext.Context user, StateMachineContext.Context event)