01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel;
02:
03: /**
04: * UseCase class proxy interface.
05: */
06: public interface UseCaseClass extends javax.jmi.reflect.RefClass {
07: /**
08: * The default factory operation used to create an instance object.
09: * @return The created instance object.
10: */
11: public UseCase createUseCase();
12:
13: /**
14: * Creates an instance object having attributes initialized by the passed
15: * values.
16: * @param Name
17: * @param Description
18: * @param OwnerIdentifier Optional identifier of the party who is responsible
19: * for the creation,deletion and validity of this model element. At the moment
20: * used to resolve conflicts between automatic model assistants. At the
21: * moment always empty for the objects created by humans.
22: * @param isAbstract
23: * @return The created instance object.
24: */
25: public UseCase createUseCase(java.lang.String name,
26: java.lang.String description,
27: java.lang.String ownerIdentifier, boolean isAbstract);
28:
29: /**
30: * @param pRef
31: * @return
32: */
33: public com.metaboss.sdlctools.models.metabossmodel.ModelElement getByRef(
34: java.lang.String pRef);
35:
36: /**
37: * @param pRef
38: * @return
39: */
40: public com.metaboss.sdlctools.models.metabossmodel.ModelElement findByRef(
41: java.lang.String pRef);
42: }
|