Package org.eclipse.ui
Interface IKeyBindingService
- All Known Subinterfaces:
- INestableKeyBindingService
- All Known Implementing Classes:
- KeyBindingService
Deprecated.
See IContextService to manage scopes and IHandlerService
             to manage handlers. IAction can be proxied by
             org.eclipse.jface.commands.ActionHandler.
The key binding service allows one to query or set the scope of Eclipse for
 the purposes of resolving key assignments to commands, and to register
 actions to handle specific commands. See the
 
org.eclipse.ui.commands extension point for details.
 A participating workbench part is responsible to register all its actions with this service. The part is also responsible to set the current scope.
This interface is not intended to be implemented or extended by clients.
- Since:
- 2.0
- Restriction:
- This interface is not intended to be implemented by clients.
- 
Method SummaryModifier and TypeMethodDescriptionString[]Deprecated.Returns the active accelerator scope ids.voidregisterAction(IAction action) Deprecated.Registers an action with the key binding service.voidDeprecated.Sets the active accelerator scope ids.voidunregisterAction(IAction action) Deprecated.Unregisters an action with the key binding service.
- 
Method Details- 
getScopesString[] getScopes()Deprecated.Returns the active accelerator scope ids.- Returns:
- the active accelerator scope ids.
 
- 
registerActionDeprecated.Registers an action with the key binding service.- Parameters:
- action- the action to be registered with the key binding service.
 
- 
setScopesDeprecated.Sets the active accelerator scope ids.- Parameters:
- scopes- the active accelerator scope ids.
 
- 
unregisterActionDeprecated.Unregisters an action with the key binding service.- Parameters:
- action- the action to be unregistered with the key binding service.
 
 
-