Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Class java.awt.event.KeyAdapter

java.lang.Object
    |
    +----java.awt.event.KeyAdapter

public abstract class KeyAdapter
extends Object
implements KeyListener
An abstract adapter class for receiving keyboard events. The methods in this class are empty. This class exists as convenience for creating listener objects.

Extend this class to create a KeyEvent listener and override the methods for the events of interest. (If you implement the KeyListener interface, you have to define all of the methods in it. This abstract class defines null methods for them all, so you can only have to define methods for events you care about.)

Create a listener object using the extended class and then register it with a component using the component's addKeyListener method. When a key is pressed, released, or typed (pressed and released), the relevant method in the listener object is invoked, and the KeyEvent is passed to it.

See Also:
KeyEvent, KeyListener, Tutorial: Writing a Key Listener, Reference: The Java Class Libraries (update file)

Method Summary
void  keyPressed(KeyEvent e)
Invoked when a key has been pressed.
void  keyReleased(KeyEvent e)
Invoked when a key has been released.
void  keyTyped(KeyEvent e)
Invoked when a key has been typed.
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

keyTyped

public void keyTyped(KeyEvent e)
Invoked when a key has been typed. This event occurs when a key press is followed by a key release.
Implements:
keyTyped in interface KeyListener

keyPressed

public void keyPressed(KeyEvent e)
Invoked when a key has been pressed.
Implements:
keyPressed in interface KeyListener

keyReleased

public void keyReleased(KeyEvent e)
Invoked when a key has been released.
Implements:
keyReleased in interface KeyListener

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.