JSR-209 (Final Release)

Uses of Class
javax.swing.KeyStroke

Packages that use KeyStroke
javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. 
javax.swing.text Provides classes and interfaces that deal with editable and noneditable text components. 
 

Uses of KeyStroke in javax.swing
 

Methods in javax.swing that return KeyStroke
static KeyStroke KeyStroke.getKeyStroke(char keyChar)
          Returns a shared instance of a KeyStroke that represents a KEY_TYPED event for the specified character.
static KeyStroke KeyStroke.getKeyStroke(java.lang.Character keyChar, int modifiers)
          Returns a shared instance of a KeyStroke, given a Character object and a set of modifiers.
static KeyStroke KeyStroke.getKeyStroke(int keyCode, int modifiers, boolean onKeyRelease)
          Returns a shared instance of a KeyStroke, given a numeric key code and a set of modifiers, specifying whether the key is activated when it is pressed or released.
static KeyStroke KeyStroke.getKeyStroke(int keyCode, int modifiers)
          Returns a shared instance of a KeyStroke, given a numeric key code and a set of modifiers.
static KeyStroke KeyStroke.getKeyStrokeForEvent(java.awt.event.KeyEvent anEvent)
          Returns a KeyStroke which represents the stroke which generated a given KeyEvent.
static KeyStroke KeyStroke.getKeyStroke(java.lang.String s)
          Parses a string and returns a KeyStroke.
 KeyStroke JMenuItem.getAccelerator()
          Returns the KeyStroke which serves as an accelerator for the menu item.
 KeyStroke[] JComponent.getRegisteredKeyStrokes()
          Returns the KeyStrokes that will initiate registered actions.
 KeyStroke[] InputMap.keys()
          Returns the KeyStrokes that are bound in this InputMap.
 KeyStroke[] InputMap.allKeys()
          Returns an array of the KeyStrokes defined in this InputMap and its parent.
 

Methods in javax.swing with parameters of type KeyStroke
static boolean SwingUtilities.notifyAction(Action action, KeyStroke ks, java.awt.event.KeyEvent event, java.lang.Object sender, int modifiers)
          Invokes actionPerformed on action if action is enabled (and non null).
protected  boolean JMenuBar.processKeyBinding(KeyStroke ks, java.awt.event.KeyEvent e, int condition, boolean pressed)
          Subclassed to check all the child menus.
 void JMenuItem.setAccelerator(KeyStroke keyStroke)
          Sets the key combination which invokes the menu item's action listeners without navigating the menu hierarchy.
 void JComponent.registerKeyboardAction(java.awt.event.ActionListener anAction, java.lang.String aCommand, KeyStroke aKeyStroke, int aCondition)
          This method is now obsolete, please use a combination of getActionMap() and getInputMap() for similiar behavior.
 void JComponent.registerKeyboardAction(java.awt.event.ActionListener anAction, KeyStroke aKeyStroke, int aCondition)
          This method is now obsolete, please use a combination of getActionMap() and getInputMap() for similiar behavior.
 void JComponent.unregisterKeyboardAction(KeyStroke aKeyStroke)
          This method is now obsolete.
 int JComponent.getConditionForKeyStroke(KeyStroke aKeyStroke)
          Returns the condition that determines whether a registered action occurs in response to the specified keystroke.
 java.awt.event.ActionListener JComponent.getActionForKeyStroke(KeyStroke aKeyStroke)
          Returns the object that will perform the action registered for a given keystroke.
protected  boolean JComponent.processKeyBinding(KeyStroke ks, java.awt.event.KeyEvent e, int condition, boolean pressed)
          Invoked to process the key bindings for ks as the result of the KeyEvent e.
 void InputMap.put(KeyStroke keyStroke, java.lang.Object actionMapKey)
          Adds a binding for keyStroke to actionMapKey.
 java.lang.Object InputMap.get(KeyStroke keyStroke)
          Returns the binding for keyStroke, messaging the parent InputMap if the binding is not locally defined.
 void InputMap.remove(KeyStroke key)
          Removes the binding for key from this InputMap.
 void JMenu.setAccelerator(KeyStroke keyStroke)
          setAccelerator is not defined for JMenu.
protected  boolean JTable.processKeyBinding(KeyStroke ks, java.awt.event.KeyEvent e, int condition, boolean pressed)
           
 void ComponentInputMap.put(KeyStroke keyStroke, java.lang.Object actionMapKey)
          Adds a binding for keyStroke to actionMapKey.
 void ComponentInputMap.remove(KeyStroke key)
          Removes the binding for key from this object.
 

Uses of KeyStroke in javax.swing.text
 

Fields in javax.swing.text declared as KeyStroke
 KeyStroke JTextComponent.KeyBinding.key
          The key.
 

Methods in javax.swing.text that return KeyStroke
 KeyStroke[] Keymap.getBoundKeyStrokes()
          Fetches all of the keystrokes in this map that are bound to some action.
 KeyStroke[] Keymap.getKeyStrokesForAction(Action a)
          Fetches the keystrokes that will result in the given action.
 

Methods in javax.swing.text with parameters of type KeyStroke
 Action Keymap.getAction(KeyStroke key)
          Fetches the action appropriate for the given symbolic event sequence.
 boolean Keymap.isLocallyDefined(KeyStroke key)
          Determines if the given key sequence is locally defined.
 void Keymap.addActionForKeyStroke(KeyStroke key, Action a)
          Adds a binding to the keymap.
 void Keymap.removeKeyStrokeBinding(KeyStroke keys)
          Removes a binding from the keymap.
 

Constructors in javax.swing.text with parameters of type KeyStroke
JTextComponent.KeyBinding(KeyStroke key, java.lang.String actionName)
          Creates a new key binding.
 


JSR-209 (Final Release)

Java and Java 2D are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
Copyright 1993 - 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All Rights Reserved.
Use of this specification is subject to this license.