public interface Commands
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
APPEND |
static java.lang.String |
CLEAR
All internal data should be reverted to some known 'default'
state.
|
static java.lang.String |
COMMIT
Tells a target object that is assigned the task of modifying
some data to instantly commit any pending changes to that data structure.
|
static java.lang.String |
DISPLAY
Makes an arbitrary kind of visualization based on the
data parameter.
|
static java.lang.String |
EDIT
Starts an 'edit' operation on the data parameter.
|
static java.lang.String |
GET |
static java.lang.String |
GET_TEXT |
static java.lang.String |
PRESENT
Makes an arbitrary kind of visualization based on the
data parameter.
|
static java.lang.String |
SELECT
Perform a selective action on the current data according to
the transmitted hint.
|
static java.lang.String |
SET |
static java.lang.String |
SET_TEXT |
static final java.lang.String SELECT
static final java.lang.String DISPLAY
PRESENT
command this
does not imply the option of interaction from the user side.
It is up to the target implementation how much the user will
be allowed to interact with the data.static final java.lang.String PRESENT
static final java.lang.String EDIT
PRESENT
command that also allows user-side modifications
of data the data is not necessarily visualized to the user, he only
has to be presented a collection of low-level tools to access its state.static final java.lang.String CLEAR
static final java.lang.String GET
static final java.lang.String SET
static final java.lang.String GET_TEXT
static final java.lang.String SET_TEXT
static final java.lang.String APPEND
static final java.lang.String COMMIT