| abbot.tester.KeyStrokeMapProvider
All known Subclasses: abbot.tester.KeyStrokeMap,
KeyStrokeMapProvider | public interface KeyStrokeMapProvider (Code) | | Provides read/write of local-specific mappings for virtual keycode-based
KeyStrokes to characters and vice versa.
|
Method Summary | |
Map | loadCharacterMap() Returns a map for the current locale which translates an Integer
virtual keycode (VK_XXX) into a the Character it produces. | Map | loadKeyStrokeMap() Returns a map for the current locale which translates a Character into
a keycode-based KeyStroke. |
loadCharacterMap | Map loadCharacterMap()(Code) | | Returns a map for the current locale which translates an Integer
virtual keycode (VK_XXX) into a the Character it produces. May not
necessarily map all keycode/modifier combinations.
|
loadKeyStrokeMap | Map loadKeyStrokeMap()(Code) | | Returns a map for the current locale which translates a Character into
a keycode-based KeyStroke. Where multiple keycodes may produce the
same Character output, the simplest keystroke is used.
|
|
|