01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel;
02:
03: /**
04: * ReportOutputField object instance interface.
05: */
06: public interface ReportOutputField extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of attribute isArray.
10: * @return Value of attribute isArray.
11: */
12: public boolean isArray();
13:
14: /**
15: * Sets the value of isArray attribute. See {@link #isArray} for description
16: * on the attribute.
17: * @param newValue New value to be set.
18: */
19: public void setArray(boolean newValue);
20:
21: /**
22: * Returns the value of reference outputElement.
23: * @return Value of reference outputElement.
24: */
25: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement getOutputElement();
26:
27: /**
28: * Sets the value of reference outputElement. See {@link #getOutputElement}
29: * for description on the reference.
30: * @param newValue New value to be set.
31: */
32: public void setOutputElement(
33: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement newValue);
34:
35: /**
36: * Returns the value of reference dataType.
37: * @return Value of reference dataType.
38: */
39: public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.DataType getDataType();
40:
41: /**
42: * Sets the value of reference dataType. See {@link #getDataType} for description
43: * on the reference.
44: * @param newValue New value to be set.
45: */
46: public void setDataType(
47: com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.DataType newValue);
48: }
|