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 interfaceSMChoiceinterfaceSMDeepHistoryDeepHistory 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.interfaceSMEntryPointAn entry point pseudostate is an entry point of a state machine or composite state.interfaceSMExitPointAn exit point pseudostate is an exit point of a state machine or composite state.interfaceSMFinalStateinterfaceSMInitAn initial pseudostate represents a default vertex that is the source for a single transition to the default state of a composite state.interfaceSMJoinForkJoins vertices serve to merge several transitions emanating from source vertices in different orthogonal regions.interfaceSMJunctionJunction vertices are semantic-free vertices that are used to chain multiple transitions together.interfaceSMPseudoStateA pseudostate is an abstraction that encompasses different types of transient vertices in the state machine graph.interfaceSMRegularStateinterfaceSMShallowHistoryshallowHistory represents the most recent active substate of its containing state (but not the substates of that substate).interfaceSMStateA state model is a situation which an invariant condition (usually implicit) usually holds in.interfaceSMTerminatorEntering 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 SMVertexSMTransExt. getSource()The source vertex of the transition.SMVertexSMTransExt. 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 refObjto 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.booleanSMVertex. isBetweenOrthogonalRegions(SMVertex refObj)True, if an existing or possible transition which connects the given vertex and the vertex given byargument refObjis a transition between orthogonal regions.
-