01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel;
02:
03: /**
04: * MessageField object instance interface.
05: */
06: public interface MessageField extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of reference message.
10: * @return Value of reference message.
11: */
12: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Message getMessage();
13:
14: /**
15: * Sets the value of reference message. See {@link #getMessage} for description
16: * on the reference.
17: * @param newValue New value to be set.
18: */
19: public void setMessage(
20: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Message newValue);
21:
22: /**
23: * Returns the value of reference dataType.
24: * @return Value of reference dataType.
25: */
26: public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.DataType getDataType();
27:
28: /**
29: * Sets the value of reference dataType. See {@link #getDataType} for description
30: * on the reference.
31: * @param newValue New value to be set.
32: */
33: public void setDataType(
34: com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.DataType newValue);
35: }
|