Uses of Class
java.awt.event.KeyEvent

Packages that use KeyEvent
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.event Provides interfaces and classes for dealing with different types of events fired by AWT components. 
org.havi.ui   
org.havi.ui.event   
org.ocap.ui.event Extensions to HAVi User Interface Event classes, including OCAP specific remote control events and multiscreen management events. 
 

Uses of KeyEvent in java.awt
 

Methods in java.awt with parameters of type KeyEvent
 boolean KeyEventDispatcher.dispatchKeyEvent(KeyEvent e)
          This method is called by the current KeyboardFocusManager requesting that this KeyEventDispatcher dispatch the specified event on its behalf.
abstract  boolean KeyboardFocusManager.dispatchKeyEvent(KeyEvent e)
          Typically this method will be called by dispatchEvent if no other KeyEventDispatcher in the dispatcher chain dispatched the KeyEvent, or if no other KeyEventDispatchers are registered.
static AWTKeyStroke AWTKeyStroke.getAWTKeyStrokeForEvent(KeyEvent anEvent)
          Returns an AWTKeyStroke which represents the stroke which generated a given KeyEvent.
 void AWTEventMulticaster.keyPressed(KeyEvent e)
          Handles the keyPressed event by invoking the keyPressed methods on listener-a and listener-b.
 void AWTEventMulticaster.keyReleased(KeyEvent e)
          Handles the keyReleased event by invoking the keyReleased methods on listener-a and listener-b.
 void AWTEventMulticaster.keyTyped(KeyEvent e)
          Handles the keyTyped event by invoking the keyTyped methods on listener-a and listener-b.
 boolean KeyEventPostProcessor.postProcessKeyEvent(KeyEvent e)
          This method is called by the current KeyboardFocusManager, requesting that this KeyEventPostProcessor perform any necessary post-processing which should be part of the KeyEvent's final resolution.
abstract  boolean KeyboardFocusManager.postProcessKeyEvent(KeyEvent e)
          This method will be called by dispatchKeyEvent.
abstract  void KeyboardFocusManager.processKeyEvent(Component focusedComponent, KeyEvent e)
          This method initiates a focus traversal operation if and only if the KeyEvent represents a focus traversal key for the specified focusedComponent.
 

Uses of KeyEvent in java.awt.event
 

Methods in java.awt.event with parameters of type KeyEvent
 void KeyListener.keyPressed(KeyEvent e)
          Invoked when a key has been pressed.
 void KeyAdapter.keyPressed(KeyEvent e)
          Invoked when a key has been pressed.
 void KeyListener.keyReleased(KeyEvent e)
          Invoked when a key has been released.
 void KeyAdapter.keyReleased(KeyEvent e)
          Invoked when a key has been released.
 void KeyListener.keyTyped(KeyEvent e)
          Invoked when a key has been typed.
 void KeyAdapter.keyTyped(KeyEvent e)
          Invoked when a key has been typed.
 

Uses of KeyEvent in org.havi.ui
 

Methods in org.havi.ui with parameters of type KeyEvent
 void HEventMulticaster.keyPressed(KeyEvent e)
          Handles the HKeyEvent by invoking the keyPressed methods on listener-a and listener-b.
 void HEventMulticaster.keyReleased(KeyEvent e)
          Handles the HKeyEvent by invoking the keyReleased methods on listener-a and listener-b.
 void HEventMulticaster.keyTyped(KeyEvent e)
          Handles the HKeyEvent by invoking the keyTyped methods on listener-a and listener-b.
 

Uses of KeyEvent in org.havi.ui.event
 

Subclasses of KeyEvent in org.havi.ui.event
 class HKeyEvent
          An HKeyEvent event is used to interact with a component implementing the HKeyboardInputPreferred interface as follows:
 class HRcEvent
          The remote control event class.
 

Uses of KeyEvent in org.ocap.ui.event
 

Subclasses of KeyEvent in org.ocap.ui.event
 class OCRcEvent
           The OCAP remote control event class.