01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel;
02:
03: /**
04: * Association object instance interface.
05: */
06: public interface Association extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of reference domain.
10: * @return Value of reference domain.
11: */
12: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain getDomain();
13:
14: /**
15: * Sets the value of reference domain. See {@link #getDomain} for description
16: * on the reference.
17: * @param newValue New value to be set.
18: */
19: public void setDomain(
20: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain newValue);
21:
22: /**
23: * Returns the value of reference associationTableDefinitions.
24: * @return Value of reference associationTableDefinitions.
25: */
26: public java.util.Collection getAssociationTableDefinitions();
27:
28: /**
29: * Returns the value of reference roles.
30: * @return Value of reference roles.
31: */
32: public java.util.List getRoles();
33: }
|