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