Package org.apache.pivot.wtk
Interface Application.UnprocessedKeyHandler
- 
- All Known Subinterfaces:
- ApplicationWithProperties.UnprocessedKeyHandler
 - All Known Implementing Classes:
- Application.UnprocessedKeyHandler.Adapter
 - Enclosing interface:
- Application
 
 public static interface Application.UnprocessedKeyHandlerOptional interface that allows an application to handle unprocessed key events (keystrokes that are processed when no component has the input focus).
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classApplication.UnprocessedKeyHandler.AdapterDeprecated.Since 2.1 and Java 8 the interface itself has default implementations.
 - 
Method SummaryAll Methods Instance Methods Default Methods Modifier and Type Method Description default voidkeyPressed(int keyCode, Keyboard.KeyLocation keyLocation)default voidkeyReleased(int keyCode, Keyboard.KeyLocation keyLocation)default voidkeyTyped(char character)
 
- 
- 
- 
Method Detail- 
keyTypeddefault void keyTyped(char character) 
 - 
keyPresseddefault void keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
 - 
keyReleaseddefault void keyReleased(int keyCode, Keyboard.KeyLocation keyLocation)
 
- 
 
-