01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.domainimplementationmodel;
02:
03: /**
04: * RelationalEntityTableReferenceColumn class proxy interface.
05: */
06: public interface RelationalEntityTableReferenceColumnClass 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 RelationalEntityTableReferenceColumn createRelationalEntityTableReferenceColumn();
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 columnNameSuggestion
24: * @param columnNameOverride
25: * @param referentialConstraintNameSuggestion
26: * @param referentialConstraintNameOverride
27: * @return The created instance object.
28: */
29: public RelationalEntityTableReferenceColumn createRelationalEntityTableReferenceColumn(
30: java.lang.String name, java.lang.String description,
31: java.lang.String ownerIdentifier,
32: java.lang.String columnNameSuggestion,
33: java.lang.String columnNameOverride,
34: java.lang.String referentialConstraintNameSuggestion,
35: java.lang.String referentialConstraintNameOverride);
36:
37: /**
38: * @param pRef
39: * @return
40: */
41: public com.metaboss.sdlctools.models.metabossmodel.ModelElement getByRef(
42: java.lang.String pRef);
43:
44: /**
45: * @param pRef
46: * @return
47: */
48: public com.metaboss.sdlctools.models.metabossmodel.ModelElement findByRef(
49: java.lang.String pRef);
50: }
|