Package de.mid.innovator.srv2api.icw2ia
Class IALoopHelper
- java.lang.Object
-
- de.mid.innovator.srv2api.icw2ia.IALoopHelper
-
public abstract class IALoopHelper extends java.lang.Object
The interactionOperator 'loop' designates that the CombinedFragment represents a loop. The loop operand will be repeated a number of times. The guard may include a lower and an upper number of iterations of the loop as well as a Boolean expression. The semantics is such that a loop will iterate at least the ‘minint’ number of times and at most the ‘maxint’ number of times. After the minimum number of iterations have executed and the Boolean expression is false, the loop will terminate.- See Also:
IALoop
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IALoop
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Loop with template and container.static IALoop
create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Loop with stereotype and container.
-
-
-
Method Detail
-
create
public static IALoop create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Loop 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 IALoop create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Loop 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
-
-