Class CLUseCaseHelper
- java.lang.Object
-
- de.mid.innovator.srv2api.icw2class.CLUseCaseHelper
-
public abstract class CLUseCaseHelper extends java.lang.Object
A use case is the specification of a set of actions performed by a system. It yields an observable result that is, typically, of value for one or more actors or other stakeholders of the system. A use case is a kind of behaviored classifier that represents a declaration of an offered behavior. Each use case specifies some behavior, possibly including variants, that the subject can perform in collaboration with one or more actors. Use cases define the offered behavior of the subject without reference to its internal structure. These behaviors, involving interactions between the actor and the subject, may result in changes to the state of the subject and communications with its environment.- See Also:
CLUseCase
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CLUseCase
create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Use Case with template and container.static CLUseCase
create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Use Case with stereotype and container.
-
-
-
Method Detail
-
create
public static CLUseCase create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Use Case 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 CLUseCase create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer) throws InoNetException, SrvErrorException
Create a new Use Case 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
-
-