| java.lang.Object org.eclipse.ui.commands.CategoryEvent
Constructor Summary | |
public | CategoryEvent(ICategory category, boolean definedChanged, boolean nameChanged) Creates a new instance of this class. |
Method Summary | |
public ICategory | getCategory() Returns the instance of the interface that changed.
the instance of the interface that changed. | public boolean | hasDefinedChanged() Returns whether or not the defined property changed. | public boolean | hasNameChanged() Returns whether or not the name property changed. |
CategoryEvent | public CategoryEvent(ICategory category, boolean definedChanged, boolean nameChanged)(Code) | | Creates a new instance of this class.
Parameters: category - the instance of the interface that changed. Parameters: definedChanged - true, iff the defined 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. |
hasNameChanged | public boolean hasNameChanged()(Code) | | Returns whether or not the name property changed.
true, iff the name property changed. |
|
|