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