|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.webrenderer.se.event.internal.KeyAdapter
public abstract class KeyAdapter
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 only have to define methods for events you care about.)
Create a listener object using the extended class and then register it
with a browser using the browser's addKeyListener method. When a
keyboard event occurs, the relevant method in the listener object is
invoked and the KeyEvent is passed to it.
| Constructor Summary | |
|---|---|
KeyAdapter()
|
|
| Method Summary | |
|---|---|
void |
onKeyDown(KeyEvent e)
Invoked when a key is pushed down. |
void |
onKeyPress(KeyEvent e)
Invoked when a character is typed. |
void |
onKeyUp(KeyEvent e)
Invoked when a key is released. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public KeyAdapter()
| Method Detail |
|---|
public void onKeyDown(KeyEvent e)
KeyListener
onKeyDown in interface KeyListenerpublic void onKeyUp(KeyEvent e)
KeyListener
onKeyUp in interface KeyListenerpublic void onKeyPress(KeyEvent e)
KeyListener
onKeyPress in interface KeyListener
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||