Class UIKeyAdapter
public abstract class UIKeyAdapter implements IUIKeyListener
{
// Methods
public void keyPressed(UIKeyEvent e);
public void keyReleased(UIKeyEvent e);
public void keyTyped(UIKeyEvent e);
}
This class is the listener adapter class for receiving keyboard events.
public void keyPressed(UIKeyEvent e);
Invoked when a key is pressed.
Return Value:
No return value.
public void keyReleased(UIKeyEvent e);
Invoked when a key is released.
Return Value:
No return value.
public void keyTyped(UIKeyEvent e);
Invoked when a key is typed. This event occurs when a key press is followed by a key release.
Return Value:
No return value.
Parameter | Description |
e
| The KEY_TYPED key event.
|