| java.lang.Object org.eclipse.ui.activities.CategoryEvent
CategoryEvent | final public class CategoryEvent (Code) | | An instance of this class describes changes to an instance of
ICategory . This class does not give details as to the
specifics of a change, only that the given property on the source object has
changed.
This class is not intended to be extended by clients.
since: 3.0 See Also: ICategoryListener.categoryChanged(CategoryEvent) |
Constructor Summary | |
public | CategoryEvent(ICategory category, boolean categoryActivityBindingsChanged, boolean definedChanged, boolean descriptionChanged, boolean nameChanged) Creates a new instance of this class.
Parameters: category - the instance of the interface that changed. Parameters: categoryActivityBindingsChanged - true , iff the categoryActivityBindings property changed. Parameters: definedChanged - true , iff the defined property changed. Parameters: descriptionChanged - true , iff the description property changed. |
CategoryEvent | public CategoryEvent(ICategory category, boolean categoryActivityBindingsChanged, boolean definedChanged, boolean descriptionChanged, boolean nameChanged)(Code) | | Creates a new instance of this class.
Parameters: category - the instance of the interface that changed. Parameters: categoryActivityBindingsChanged - true , iff the categoryActivityBindings property changed. Parameters: definedChanged - true , iff the defined property changed. Parameters: descriptionChanged - true , iff the description property changed. Parameters: nameChanged - true , iff the name property changed. |
getCategory | public ICategory getCategory()(Code) | | Returns the instance of the interface that changed.
the instance of the interface that changed. Guaranteed not to benull . |
hasDefinedChanged | public boolean hasDefinedChanged()(Code) | | Returns whether or not the defined property changed.
true , iff the defined property changed. |
hasDescriptionChanged | public boolean hasDescriptionChanged()(Code) | | Returns whether or not the description property changed.
true , iff the description property changed. |
hasNameChanged | public boolean hasNameChanged()(Code) | | Returns whether or not the name property changed.
true , iff the name property changed. |
haveCategoryActivityBindingsChanged | public boolean haveCategoryActivityBindingsChanged()(Code) | | Returns whether or not the categoryActivityBindings property changed.
true , iff the categoryActivityBindings property changed. |
|
|