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
- Restriction:
- This interface is not intended to be implemented by clients.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Add event: value added isUIEvents.EventTags.NEW_VALUE
.static final String
Add many items: values added areUIEvents.EventTags.NEW_VALUE
static final String
Creation eventstatic final String
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 final String
Remove event: value removed isUIEvents.EventTags.OLD_VALUE
static final String
Remove many event: the values removed are theUIEvents.EventTags.OLD_VALUE
(a collection).static final String
Set event
-
Field Details
-
CREATE
Creation event- See Also:
-
SET
Set event- See Also:
-
ADD
Add event: value added isUIEvents.EventTags.NEW_VALUE
.- See Also:
-
ADD_MANY
Add many items: values added areUIEvents.EventTags.NEW_VALUE
- See Also:
-
REMOVE
Remove event: value removed isUIEvents.EventTags.OLD_VALUE
-
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
. -
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:
-