01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel;
02:
03: /**
04: * SelectorInputField object instance interface.
05: */
06: public interface SelectorInputField 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 selector.
23: * @return Value of reference selector.
24: */
25: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Selector getSelector();
26:
27: /**
28: * Sets the value of reference selector. See {@link #getSelector} for description
29: * on the reference.
30: * @param newValue New value to be set.
31: */
32: public void setSelector(
33: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Selector 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: }
|