Uses of Interface
de.mid.innovator.srv2api.icw2sm.SMVertex
-
Packages that use SMVertex Package Description de.mid.innovator.srv2api.icw2sm The StateMachine package defines a set of concepts that can be used for modeling discrete behavior through finite statetransition systems. -
-
Uses of SMVertex in de.mid.innovator.srv2api.icw2sm
Subinterfaces of SMVertex in de.mid.innovator.srv2api.icw2sm Modifier and Type Interface Description interface
SMChoice
interface
SMDeepHistory
DeepHistory represents the most recent active configuration of the composite state that directly contains this pseudostate - the state configuration that was active when the composite state was last exited.interface
SMEntryPoint
An entry point pseudostate is an entry point of a state machine or composite state.interface
SMExitPoint
An exit point pseudostate is an exit point of a state machine or composite state.interface
SMFinalState
interface
SMInit
An initial pseudostate represents a default vertex that is the source for a single transition to the default state of a composite state.interface
SMJoinFork
Joins vertices serve to merge several transitions emanating from source vertices in different orthogonal regions.interface
SMJunction
Junction vertices are semantic-free vertices that are used to chain multiple transitions together.interface
SMPseudoState
A pseudostate is an abstraction that encompasses different types of transient vertices in the state machine graph.interface
SMRegularState
interface
SMShallowHistory
shallowHistory represents the most recent active substate of its containing state (but not the substates of that substate).interface
SMState
A state model is a situation which an invariant condition (usually implicit) usually holds in.interface
SMTerminator
Entering a terminate pseudostate implies that the execution of this state machine by means of its context object is terminated.Methods in de.mid.innovator.srv2api.icw2sm with type parameters of type SMVertex Modifier and Type Method Description <T extends SMVertex>
java.util.List<T>SMVertex. getReachedVertex(java.lang.Class<T> returnType, K_CONTROL_OPTION... behaviourFlags)
All vertices which are reached transitive via transitions starting from the given vertex.<T extends SMVertex>
java.util.List<T>SMVertex. getReachedVertex(java.lang.Class<T> returnType, MMStereotype stereotype, K_CONTROL_OPTION... behaviourFlags)
The method calls getReachedVertex and filters its return values according to the given stereotype value.<T extends SMVertex>
java.util.List<T>SMRegion. getSubvertex(java.lang.Class<T> returnType, K_CONTROL_OPTION... behaviourFlags)
The set of vertices that are owned by the region.Methods in de.mid.innovator.srv2api.icw2sm that return SMVertex Modifier and Type Method Description SMVertex
SMTransExt. getSource()
The source vertex of the transition.SMVertex
SMTransExt. getTarget()
The target vertex of the transition.Methods in de.mid.innovator.srv2api.icw2sm with parameters of type SMVertex Modifier and Type Method Description java.util.List<SMTransExt>
SMVertex. getComesFromVertex(MMStereotype stereotype, SMVertex refObj, K_CONTROL_OPTION... behaviourFlags)
The method calls getComesFromVertex and filters its return values according to the given stereotype value.java.util.List<SMTransExt>
SMVertex. getComesFromVertex(SMVertex refObj, K_CONTROL_OPTION... behaviourFlags)
All transitions which come from the state given byargument refObj
to the state given state.java.util.List<SMTransExt>
SMVertex. getGoesToVertex(MMStereotype stereotype, SMVertex refObj, K_CONTROL_OPTION... behaviourFlags)
The method calls getGoesToVertex and filters its return values according to the given stereotype value.java.util.List<SMTransExt>
SMVertex. getGoesToVertex(SMVertex refObj, K_CONTROL_OPTION... behaviourFlags)
All transitions which go from the given vertex to the vertex given byargument refObj
.boolean
SMVertex. isBetweenOrthogonalRegions(SMVertex refObj)
True, if an existing or possible transition which connects the given vertex and the vertex given byargument refObj
is a transition between orthogonal regions.
-