01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel;
02:
03: /**
04: * SystemDependency object instance interface.
05: */
06: public interface SystemDependency extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of reference servant.
10: * @return Value of reference servant.
11: */
12: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.System getServant();
13:
14: /**
15: * Sets the value of reference servant. See {@link #getServant} for description
16: * on the reference.
17: * @param newValue New value to be set.
18: */
19: public void setServant(
20: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.System newValue);
21:
22: /**
23: * Returns the value of reference client.
24: * @return Value of reference client.
25: */
26: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.System getClient();
27:
28: /**
29: * Sets the value of reference client. See {@link #getClient} for description
30: * on the reference.
31: * @param newValue New value to be set.
32: */
33: public void setClient(
34: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.System newValue);
35: }
|