Package de.mid.innovator.srv2api.icw2sm
Class SMProtocolStateMachineHelper
- java.lang.Object
-
- de.mid.innovator.srv2api.icw2sm.SMProtocolStateMachineHelper
-
public abstract class SMProtocolStateMachineHelper extends java.lang.Object
A protocol state machine is always defined in the context of a classifier. It specifies which operations of the classifier can be called in which state and under which condition; this specifies the allowed call sequences on the classifier's operations. A protocol state machine presents the possible and permitted transitions on the instances of its context classifier together with the operations which carry the transitions.- See Also:
SMProtocolStateMachine
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SMProtocolStateMachine
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Protocol State Machine with template and container.static SMProtocolStateMachine
create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Protocol State Machine with stereotype and container.
-
-
-
Method Detail
-
create
public static SMProtocolStateMachine create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Protocol State Machine with stereotype and container.- Parameters:
srvCtx
- The context of the related innovator server.ohStereotype
- Stereotype for the new elementohContainer
- Container for the new element- Throws:
InoNetException
SrvErrorException
-
create
public static SMProtocolStateMachine create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Protocol State Machine with template and container.- Parameters:
srvCtx
- The context of the related innovator server.ohTemplate
- Template for the new elementohContainer
- Container for the new element- Throws:
InoNetException
SrvErrorException
-
-