Package org.eclipse.core.commands.common
Class AbstractNamedHandleEvent
java.lang.Object
org.eclipse.core.commands.common.AbstractBitSetEvent
org.eclipse.core.commands.common.AbstractHandleObjectEvent
org.eclipse.core.commands.common.AbstractNamedHandleEvent
- Direct Known Subclasses:
CategoryEvent
,CommandEvent
,ContextEvent
,SchemeEvent
An event fired from a NamedHandleObject
. This provides
notification of changes to the defined state, the name and the description.
- Since:
- 3.1
-
Field Summary
Modifier and TypeFieldDescriptionprotected static final int
The bit used to represent whether the category has changed its description.protected static final int
The bit used to represent whether the category has changed its name.protected static final int
The last used bit so that subclasses can add more properties.Fields inherited from class org.eclipse.core.commands.common.AbstractHandleObjectEvent
CHANGED_DEFINED, LAST_BIT_USED_ABSTRACT_HANDLE
Fields inherited from class org.eclipse.core.commands.common.AbstractBitSetEvent
changedValues
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractNamedHandleEvent
(boolean definedChanged, boolean descriptionChanged, boolean nameChanged) Constructs a new instance ofAbstractHandleObjectEvent
. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Returns whether or not the description property changed.final boolean
Returns whether or not the name property changed.Methods inherited from class org.eclipse.core.commands.common.AbstractHandleObjectEvent
isDefinedChanged
-
Field Details
-
CHANGED_DESCRIPTION
protected static final int CHANGED_DESCRIPTIONThe bit used to represent whether the category has changed its description.- See Also:
-
CHANGED_NAME
protected static final int CHANGED_NAMEThe bit used to represent whether the category has changed its name.- See Also:
-
LAST_USED_BIT
protected static final int LAST_USED_BITThe last used bit so that subclasses can add more properties.- See Also:
-
-
Constructor Details
-
AbstractNamedHandleEvent
protected AbstractNamedHandleEvent(boolean definedChanged, boolean descriptionChanged, boolean nameChanged) Constructs a new instance ofAbstractHandleObjectEvent
.- Parameters:
definedChanged
-true
, iff the defined property changed.descriptionChanged
-true
, iff the description property changed.nameChanged
-true
, iff the name property changed.
-
-
Method Details
-
isDescriptionChanged
public final boolean isDescriptionChanged()Returns whether or not the description property changed.- Returns:
true
, iff the description property changed.
-
isNameChanged
public final boolean isNameChanged()Returns whether or not the name property changed.- Returns:
true
, iff the name property changed.
-