org.apache.pivot.wtk
Interface Application.UnprocessedKeyHandler

All Known Implementing Classes:
Application.UnprocessedKeyHandler.Adapter
Enclosing interface:
Application

public static interface Application.UnprocessedKeyHandler

Optional interface that allows an application to handle unprocessed key events (keystrokes that are processed when no component has the input focus).


Nested Class Summary
static class Application.UnprocessedKeyHandler.Adapter
          UnprocessedKeyHandler adapter.
 
Method Summary
 void keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
           
 void keyReleased(int keyCode, Keyboard.KeyLocation keyLocation)
           
 void keyTyped(char character)
           
 

Method Detail

keyTyped

void keyTyped(char character)

keyPressed

void keyPressed(int keyCode,
                Keyboard.KeyLocation keyLocation)

keyReleased

void keyReleased(int keyCode,
                 Keyboard.KeyLocation keyLocation)