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