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