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