public interface Keymap
A collection of bindings of KeyStrokes to actions.  The
 bindings are basically name-value pairs that potentially
 resolve in a hierarchy.
- 
Method SummaryModifier and Type Method Description voidaddActionForKeyStroke(KeyStroke key, Action a)Adds a binding to the keymap.ActiongetAction(KeyStroke key)Fetches the action appropriate for the given symbolic event sequence.Action[]getBoundActions()Fetches all of the actions defined in this keymap.KeyStroke[]getBoundKeyStrokes()Fetches all of the keystrokes in this map that are bound to some action.ActiongetDefaultAction()Fetches the default action to fire if a key is typed (i.e. a KEY_TYPED KeyEvent is received) and there is no binding for it.KeyStroke[]getKeyStrokesForAction(Action a)Fetches the keystrokes that will result in the given action.StringgetName()Fetches the name of the set of key-bindings.KeymapgetResolveParent()Fetches the parent keymap used to resolve key-bindings.booleanisLocallyDefined(KeyStroke key)Determines if the given key sequence is locally defined.voidremoveBindings()Removes all bindings from the keymap.voidremoveKeyStrokeBinding(KeyStroke keys)Removes a binding from the keymap.voidsetDefaultAction(Action a)Set the default action to fire if a key is typed.voidsetResolveParent(Keymap parent)Sets the parent keymap, which will be used to resolve key-bindings.
- 
Method Details- 
getNameString getName()Fetches the name of the set of key-bindings.- Returns:
- the name
 
- 
getDefaultActionAction getDefaultAction()Fetches the default action to fire if a key is typed (i.e. a KEY_TYPED KeyEvent is received) and there is no binding for it. Typically this would be some action that inserts text so that the keymap doesn't require an action for each possible key.- Returns:
- the default action
 
- 
setDefaultActionSet the default action to fire if a key is typed.- Parameters:
- a- the action
 
- 
getActionFetches the action appropriate for the given symbolic event sequence. This is used by JTextController to determine how to interpret key sequences. If the binding is not resolved locally, an attempt is made to resolve through the parent keymap, if one is set.- Parameters:
- key- the key sequence
- Returns:
- the action associated with the key
  sequence if one is defined, otherwise null
 
- 
getBoundKeyStrokesKeyStroke[] getBoundKeyStrokes()Fetches all of the keystrokes in this map that are bound to some action.- Returns:
- the list of keystrokes
 
- 
getBoundActionsAction[] getBoundActions()Fetches all of the actions defined in this keymap.- Returns:
- the list of actions
 
- 
getKeyStrokesForActionFetches the keystrokes that will result in the given action.- Parameters:
- a- the action
- Returns:
- the list of keystrokes
 
- 
isLocallyDefinedDetermines if the given key sequence is locally defined.- Parameters:
- key- the key sequence
- Returns:
- true if the key sequence is locally defined else false
 
- 
addActionForKeyStrokeAdds a binding to the keymap.- Parameters:
- key- the key sequence
- a- the action
 
- 
removeKeyStrokeBindingRemoves a binding from the keymap.- Parameters:
- keys- the key sequence
 
- 
removeBindingsvoid removeBindings()Removes all bindings from the keymap.
- 
getResolveParentKeymap getResolveParent()Fetches the parent keymap used to resolve key-bindings.- Returns:
- the keymap
 
- 
setResolveParentSets the parent keymap, which will be used to resolve key-bindings. The behavior is unspecified if aKeymaphas itself as one of its resolve parents.- Parameters:
- parent- the parent keymap
 
 
-