01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel;
02:
03: /**
04: * UsageSpecification object instance interface.
05: */
06: public interface UsageSpecification
07: extends
08: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel.AbstractNamespace {
09: /**
10: * Returns the value of reference system.
11: * @return Value of reference system.
12: */
13: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.System getSystem();
14:
15: /**
16: * Sets the value of reference system. See {@link #getSystem} for description
17: * on the reference.
18: * @param newValue New value to be set.
19: */
20: public void setSystem(
21: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.System newValue);
22: }
|