public interface StringValue extends FlatValue
FlatValue representation for the possible answers to a prompt. The object modelizes the values of type String.
To instantiate a value of type String for a prompt answer, you can use:
The following features are supported:
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the value of the 'Value' attribute.
|
void |
setValue(java.lang.String value)
Sets the value of the '
Value' attribute. |
java.lang.String getValue()
This is the value of type String used as prompt answer.
setValue(String)void setValue(java.lang.String value)
Value' attribute.
This is the value of type String used as prompt answer.
value - the new value of the 'Value' attribute.getValue()