Class MEModelHelper
- java.lang.Object
-
- de.mid.innovator.srv2api.icw2model.MEModelHelper
-
public abstract class MEModelHelper extends java.lang.Object
A model captures a view of a physical system. It is an abstraction of the physical system with a certain purpose. This purpose determines what should be included in the model and what is irrelevant. Therefore, the model completely describes those aspects of the physical system that are relevant to the purpose of the model at the appropriate level of detail. The model construct is defined as a package. It contains a (hierarchical) set of elements that together describe the physical system being modeled. A model may also contain a set of elements that represent the environment of the system, typically actors, together with their inter-relationships, such as associations and dependencies.- See Also:
MEModel
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MEModel
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Model with template and container.static MEModel
create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Model with stereotype and container.
-
-
-
Method Detail
-
create
public static MEModel create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Model 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 MEModel create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Model 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
-
-