01: package com.metaboss.sdlctools.models.metabossmodel.statemachinemodel;
02:
03: /**
04: * State class proxy interface.
05: */
06: public interface StateClass 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 State createState();
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 type
23: * @return The created instance object.
24: */
25: public State createState(
26: java.lang.String name,
27: java.lang.String description,
28: java.lang.String ownerIdentifier,
29: com.metaboss.sdlctools.models.metabossmodel.statemachinemodel.StateType type);
30:
31: /**
32: * @param pRef
33: * @return
34: */
35: public com.metaboss.sdlctools.models.metabossmodel.ModelElement getByRef(
36: java.lang.String pRef);
37:
38: /**
39: * @param pRef
40: * @return
41: */
42: public com.metaboss.sdlctools.models.metabossmodel.ModelElement findByRef(
43: java.lang.String pRef);
44: }
|