Package org.eclipse.core.commands.common
Class AbstractBitSetEvent
java.lang.Object
org.eclipse.core.commands.common.AbstractBitSetEvent
- Direct Known Subclasses:
AbstractHandleObjectEvent
,BindingManagerEvent
,ContextManagerEvent
,HandlerEvent
An event that carries with it two or more boolean values. This provides a single integer value which can then be used as a bit set.
- Since:
- 3.1
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected int
A collection of bits representing whether certain values have changed. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
changedValues
protected int changedValuesA collection of bits representing whether certain values have changed. A bit is set (i.e.,1
) if the corresponding property has changed. It can be assumed that this value will be correctly initialized by the superconstructor.
-
-
Constructor Details
-
AbstractBitSetEvent
public AbstractBitSetEvent()
-