public interface KeyListener extends SWTEventListener
After creating an instance of a class that implements
this interface it can be added to a control using the
addKeyListener
method and removed using
the removeKeyListener
method. When a
key is pressed or released, the appropriate method will
be invoked.
KeyAdapter
,
KeyEvent
Modifier and Type | Method and Description |
---|---|
void |
keyPressed(KeyEvent e)
Sent when a key is pressed on the system keyboard.
|
void |
keyReleased(KeyEvent e)
Sent when a key is released on the system keyboard.
|
void keyPressed(KeyEvent e)
e
- an event containing information about the key pressvoid keyReleased(KeyEvent e)
e
- an event containing information about the key release