Class CLParameterSetHelper
- java.lang.Object
-
- de.mid.innovator.srv2api.icw2class.CLParameterSetHelper
-
public abstract class CLParameterSetHelper extends java.lang.Object
A parameter set is an element that provides alternative sets of inputs or outputs that a behavior may use.
If a behavior has input parameters that are in a parameter set, any inputs that are not in a parameter set must be streaming. The same applies for output parameters.
Two parameter sets cannot have exactly the same set of parameters.- See Also:
CLParameterSet
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CLParameterSet
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Parameter Set with template and container.static CLParameterSet
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, java.util.List<? extends ELElement> seqSel)
Create a new Parameter Set with template and a sequence of elements.static CLParameterSet
create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Parameter Set with stereotype and container.static CLParameterSet
create(SrvContext srvCtx, MMStereotype ohStereotype, java.util.List<? extends ELElement> seqSel)
Create a new Parameter Set with stereotype and a sequence of elements.
-
-
-
Method Detail
-
create
public static CLParameterSet create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Parameter Set 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 CLParameterSet create(SrvContext srvCtx, MMStereotype ohStereotype, java.util.List<? extends ELElement> seqSel) throws InoNetException, SrvErrorException
Create a new Parameter Set with stereotype and a sequence of elements.- Parameters:
srvCtx
- The context of the related innovator server.ohStereotype
- Stereotype for the new elementseqSel
- Sequence of selected elements- Throws:
InoNetException
SrvErrorException
-
create
public static CLParameterSet create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Parameter Set 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
-
create
public static CLParameterSet create(SrvContext srvCtx, MMCreateTemplate ohTemplate, java.util.List<? extends ELElement> seqSel) throws InoNetException, SrvErrorException
Create a new Parameter Set with template and a sequence of elements.- Parameters:
srvCtx
- The context of the related innovator server.ohTemplate
- Template for the new elementseqSel
- Sequence of selected elements- Throws:
InoNetException
SrvErrorException
-
-