Package de.mid.innovator.srv2api.icw2ia
Class IAInteractionHelper
- java.lang.Object
-
- de.mid.innovator.srv2api.icw2ia.IAInteractionHelper
-
public abstract class IAInteractionHelper extends java.lang.Object
An interaction is a unit of behavior that focuses on the observable exchange of information between ConnectAbleElements.- See Also:
IAInteraction
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IAInteraction
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Interaction with template and container.static IAInteraction
create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Interaction with stereotype and container.static void
layout(SrvContext srvCtx, java.util.List<? extends IAInteraction> sel, java.lang.String format, K_ORIENTATION orientation, int marginLeft, int marginRight, int marginTop, int marginBottom, int horPage, int verPage)
Sets the layout information of theIAInteraction
.
-
-
-
Method Detail
-
layout
public static void layout(SrvContext srvCtx, java.util.List<? extends IAInteraction> sel, java.lang.String format, K_ORIENTATION orientation, int marginLeft, int marginRight, int marginTop, int marginBottom, int horPage, int verPage) throws InoNetException, SrvErrorException
Sets the layout information of theIAInteraction
.- Parameters:
srvCtx
- The context of the related innovator server.sel
- all objects that will be modified.format
- format of the presentation contextorientation
- orientation of the presentation contextmarginLeft
- margin on the left bordermarginRight
- margin on the right bordermarginTop
- margin on the top bordermarginBottom
- margin on the bottom borderhorPage
- number of horinzontal pagesverPage
- number of vertical pages- Throws:
InoNetException
SrvErrorException
-
create
public static IAInteraction create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Interaction 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 IAInteraction create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Interaction 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
-
-