Package org.eclipse.core.commands
Class CommandManagerEvent
java.lang.Object
org.eclipse.core.commands.CommandManagerEvent
An event indicating that the set of defined command identifiers has changed.
- Since:
- 3.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCommandManagerEvent(CommandManager commandManager, String parameterTypeId, boolean parameterTypeIdAdded, boolean parameterTypeIdChanged) Creates a newCommandManagerEventinstance to describe changes to command parameter types.CommandManagerEvent(CommandManager commandManager, String commandId, boolean commandIdAdded, boolean commandIdChanged, String categoryId, boolean categoryIdAdded, boolean categoryIdChanged) Creates a newCommandManagerEventinstance to describe changes to commands and/or categories. -
Method Summary
Modifier and TypeMethodDescriptionfinal StringReturns the category identifier that was added or removed.final StringReturns the command identifier that was added or removed.final CommandManagerReturns the instance of the interface that changed.final StringReturns the command parameter type identifier that was added or removed.final booleanReturns whether the list of defined category identifiers has changed.final booleanReturns whether the category identifier became defined.final booleanReturns whether the list of defined command identifiers has changed.final booleanReturns whether the command identifier became defined.final booleanReturns whether the list of defined command parameter type identifiers has changed.final booleanReturns whether the command parameter type identifier became defined.
-
Constructor Details
-
CommandManagerEvent
public CommandManagerEvent(CommandManager commandManager, String commandId, boolean commandIdAdded, boolean commandIdChanged, String categoryId, boolean categoryIdAdded, boolean categoryIdChanged) Creates a newCommandManagerEventinstance to describe changes to commands and/or categories.- Parameters:
commandManager- the instance of the interface that changed; must not benull.commandId- The command identifier that was added or removed; must not benullif commandIdChanged istrue.commandIdAdded- Whether the command identifier became defined (otherwise, it became undefined).commandIdChanged- Whether the list of defined command identifiers has changed.categoryId- The category identifier that was added or removed; must not benullif categoryIdChanged istrue.categoryIdAdded- Whether the category identifier became defined (otherwise, it became undefined).categoryIdChanged- Whether the list of defined category identifiers has changed.
-
CommandManagerEvent
public CommandManagerEvent(CommandManager commandManager, String parameterTypeId, boolean parameterTypeIdAdded, boolean parameterTypeIdChanged) Creates a newCommandManagerEventinstance to describe changes to command parameter types.- Parameters:
commandManager- the instance of the interface that changed; must not benull.parameterTypeId- The command parameter type identifier that was added or removed; must not benullif parameterTypeIdChanged istrue.parameterTypeIdAdded- Whether the parameter type identifier became defined (otherwise, it became undefined).parameterTypeIdChanged- Whether the list of defined parameter type identifiers has changed.- Since:
- 3.2
-
-
Method Details
-
getCategoryId
Returns the category identifier that was added or removed.- Returns:
- The category identifier that was added or removed; may be
null.
-
getCommandId
Returns the command identifier that was added or removed.- Returns:
- The command identifier that was added or removed; may be
null.
-
getCommandManager
Returns the instance of the interface that changed.- Returns:
- the instance of the interface that changed. Guaranteed not to be
null.
-
getParameterTypeId
Returns the command parameter type identifier that was added or removed.- Returns:
- The command parameter type identifier that was added or removed;
may be
null. - Since:
- 3.2
-
isCategoryChanged
public final boolean isCategoryChanged()Returns whether the list of defined category identifiers has changed.- Returns:
trueif the list of category identifiers has changed;falseotherwise.
-
isCategoryDefined
public final boolean isCategoryDefined()Returns whether the category identifier became defined. Otherwise, the category identifier became undefined.- Returns:
trueif the category identifier became defined;falseif the category identifier became undefined.
-
isCommandChanged
public final boolean isCommandChanged()Returns whether the list of defined command identifiers has changed.- Returns:
trueif the list of command identifiers has changed;falseotherwise.
-
isCommandDefined
public final boolean isCommandDefined()Returns whether the command identifier became defined. Otherwise, the command identifier became undefined.- Returns:
trueif the command identifier became defined;falseif the command identifier became undefined.
-
isParameterTypeChanged
public final boolean isParameterTypeChanged()Returns whether the list of defined command parameter type identifiers has changed.- Returns:
trueif the list of command parameter type identifiers has changed;falseotherwise.- Since:
- 3.2
-
isParameterTypeDefined
public final boolean isParameterTypeDefined()Returns whether the command parameter type identifier became defined. Otherwise, the command parameter type identifier became undefined.- Returns:
trueif the command parameter type identifier became defined;falseif the command parameter type identifier became undefined.- Since:
- 3.2
-