Package org.eclipse.core.commands
Interface ICommandListener
-
- All Known Implementing Classes:
CommandManager
public interface ICommandListener
An instance of this interface can be used by clients to receive notification of changes to one or more instances ofCommand
.This interface may be implemented by clients.
- Since:
- 3.1
- See Also:
Command.addCommandListener(ICommandListener)
,Command.removeCommandListener(ICommandListener)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
commandChanged(CommandEvent commandEvent)
Notifies that one or more properties of an instance ofCommand
have changed.
-
-
-
Method Detail
-
commandChanged
void commandChanged(CommandEvent commandEvent)
Notifies that one or more properties of an instance ofCommand
have changed. Specific details are described in theCommandEvent
.- Parameters:
commandEvent
- the command event. Guaranteed not to benull
.
-
-