public class BasicTreeUI.KeyHandler extends KeyAdapter
This is used to get multiple key down events to appropriately generate events.
protected Action repeatKeyAction
Key code that is being generated for.
protected boolean isKeyDown
Set to true while keyPressed is active.
public KeyHandler()
public void keyTyped(KeyEvent e)
Invoked when a key has been typed. Moves the keyboard focus to the first element whose first letter matches the alphanumeric key pressed by the user. Subsequent same key presses move the keyboard focus to the next object that starts with the same letter.
keyTyped
in interface KeyListener
keyTyped
in class KeyAdapter
public void keyPressed(KeyEvent e)
Description copied from class: KeyAdapter
Invoked when a key has been pressed.
keyPressed
in interface KeyListener
keyPressed
in class KeyAdapter
public void keyReleased(KeyEvent e)
Description copied from class: KeyAdapter
Invoked when a key has been released.
keyReleased
in interface KeyListener
keyReleased
in class KeyAdapter
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.