01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel;
02:
03: /**
04: * ReportOutputElement object instance interface.
05: */
06: public interface ReportOutputElement extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * @return
10: */
11: public int getLevelIndex();
12:
13: /**
14: * Returns the value of reference outputFields.
15: * @return Value of reference outputFields.
16: */
17: public java.util.Collection getOutputFields();
18:
19: /**
20: * Returns the value of reference report.
21: * @return Value of reference report.
22: */
23: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Report getReport();
24:
25: /**
26: * Sets the value of reference report. See {@link #getReport} for description
27: * on the reference.
28: * @param newValue New value to be set.
29: */
30: public void setReport(
31: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Report newValue);
32:
33: /**
34: * Returns the value of reference outputEntities.
35: * @return Value of reference outputEntities.
36: */
37: public java.util.Collection getOutputEntities();
38:
39: /**
40: * Returns the value of reference subElement.
41: * @return Value of reference subElement.
42: */
43: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement getSubElement();
44:
45: /**
46: * Sets the value of reference subElement. See {@link #getSubElement} for
47: * description on the reference.
48: * @param newValue New value to be set.
49: */
50: public void setSubElement(
51: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement newValue);
52:
53: /**
54: * Returns the value of reference parenElement.
55: * @return Value of reference parenElement.
56: */
57: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement getParenElement();
58:
59: /**
60: * Sets the value of reference parenElement. See {@link #getParenElement}
61: * for description on the reference.
62: * @param newValue New value to be set.
63: */
64: public void setParenElement(
65: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.ReportOutputElement newValue);
66: }
|