Package org.eclipse.e4.ui.workbench
Interface UIEvents.EventTypes
-
- Enclosing class:
- UIEvents
public static interface UIEvents.EventTypes
E4 UI Event Types. Add appropriate utility is <Test> method below if new types added
-
-
Field Summary
Fields Modifier and Type Field Description static String
ADD
Add event: value added isUIEvents.EventTags.NEW_VALUE
.static String
ADD_MANY
Add many items: values added areUIEvents.EventTags.NEW_VALUE
static String
CREATE
Creation eventstatic String
MOVE
Value moved: the value moved is theUIEvents.EventTags.NEW_VALUE
, the old position isUIEvents.EventTags.OLD_VALUE
, and the new position inUIEvents.EventTags.POSITION
.static String
REMOVE
Remove event: value removed isUIEvents.EventTags.OLD_VALUE
static String
REMOVE_MANY
Remove many event: the values removed are theUIEvents.EventTags.OLD_VALUE
(a collection).static String
SET
Set event
-
-
-
Field Detail
-
CREATE
static final String CREATE
Creation event- See Also:
- Constant Field Values
-
SET
static final String SET
Set event- See Also:
- Constant Field Values
-
ADD
static final String ADD
Add event: value added isUIEvents.EventTags.NEW_VALUE
.- See Also:
UIEvents.isADD(Event)
, Constant Field Values
-
ADD_MANY
static final String ADD_MANY
Add many items: values added areUIEvents.EventTags.NEW_VALUE
- See Also:
UIEvents.isADD(Event)
, Constant Field Values
-
REMOVE
static final String REMOVE
Remove event: value removed isUIEvents.EventTags.OLD_VALUE
- See Also:
UIEvents.isREMOVE(Event)
, Constant Field Values
-
REMOVE_MANY
static final String REMOVE_MANY
Remove many event: the values removed are theUIEvents.EventTags.OLD_VALUE
(a collection). The former positions of the removed values are provided as an integer array inUIEvents.EventTags.POSITION
.- See Also:
UIEvents.isREMOVE(Event)
, Constant Field Values
-
MOVE
static final String MOVE
Value moved: the value moved is theUIEvents.EventTags.NEW_VALUE
, the old position isUIEvents.EventTags.OLD_VALUE
, and the new position inUIEvents.EventTags.POSITION
.- See Also:
- Constant Field Values
-
-