01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel;
02:
03: /**
04: * ReportOutputEntity object instance interface.
05: */
06: public interface ReportOutputEntity 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 outptuElement.
23: * @return Value of reference outptuElement.
24: */
25: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement getOutptuElement();
26:
27: /**
28: * Sets the value of reference outptuElement. See {@link #getOutptuElement}
29: * for description on the reference.
30: * @param newValue New value to be set.
31: */
32: public void setOutptuElement(
33: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement newValue);
34:
35: /**
36: * Returns the value of reference attributes.
37: * @return Value of reference attributes.
38: */
39: public java.util.Collection getAttributes();
40:
41: /**
42: * Returns the value of reference entity.
43: * @return Value of reference entity.
44: */
45: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Entity getEntity();
46:
47: /**
48: * Sets the value of reference entity. See {@link #getEntity} for description
49: * on the reference.
50: * @param newValue New value to be set.
51: */
52: public void setEntity(
53: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Entity newValue);
54: }
|