All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.event.KeyAdapter

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

public abstract class KeyAdapter
extends Object
implements KeyListener
The adapter which receives keyboard events. The methods in this class are empty; this class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest.


Constructor Index

 o KeyAdapter()

Method Index

 o keyPressed(KeyEvent)
 o keyReleased(KeyEvent)
 o keyTyped(KeyEvent)

Constructors

 o KeyAdapter
 public KeyAdapter()

Methods

 o keyTyped
 public void keyTyped(KeyEvent e)
 o keyPressed
 public void keyPressed(KeyEvent e)
 o keyReleased
 public void keyReleased(KeyEvent e)

All Packages  Class Hierarchy  This Package  Previous  Next  Index

Submit a bug or feature