blob: 186a69b00272e4a700048e2ab9da2bdce43fb316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.keybindings;
/**
* The <tt>KeybindingService</tt> handles the distribution of configurable and
* persistent keybinding sets.
* @author Damian Johnson
*/
public interface KeybindingsService
{
/**
* Provides the bindings associated with a given category. This may be null
* if the default bindings failed to be loaded.
* @param category segment of the UI for which bindings should be retrieved
* @return mappings of keystrokes to the string representation of their
* actions
*/
KeybindingSet getBindings(KeybindingSet.Category category);
}
|