Uses of Interface
org.havi.ui.event.HKeyListener

Packages that use HKeyListener
org.havi.ui   
 

Uses of HKeyListener in org.havi.ui
 

Classes in org.havi.ui that implement HKeyListener
 class HEventMulticaster
          The HEventMulticaster class is intended to assist platform or subclass implementers with the handling of HAVi events.
 

Methods in org.havi.ui that return HKeyListener
static HKeyListener HEventMulticaster.add(HKeyListener a, HKeyListener b)
          Adds HKeyListener-a with HKeyListener-b and returns the resulting multicast listener.
static HKeyListener HEventMulticaster.remove(HKeyListener l, HKeyListener oldl)
          Removes the old HKeyListener from HKeyListener-l and returns the resulting multicast listener.
 

Methods in org.havi.ui with parameters of type HKeyListener
static HKeyListener HEventMulticaster.add(HKeyListener a, HKeyListener b)
          Adds HKeyListener-a with HKeyListener-b and returns the resulting multicast listener.
 void HTextValue.addHKeyListener(HKeyListener l)
          Adds the specified HKeyListener to receive HKeyEvent events sent from this HTextValue: If the listener has already been added further calls will add further references to the listener, which will then receive multiple copies of a single event.
 void HSinglelineEntry.addHKeyListener(HKeyListener l)
          Adds the specified HKeyListener to receive HKeyEvent events sent from this HTextValue: If the listener has already been added further calls will add further references to the listener, which will then receive multiple copies of a single event.
static HKeyListener HEventMulticaster.remove(HKeyListener l, HKeyListener oldl)
          Removes the old HKeyListener from HKeyListener-l and returns the resulting multicast listener.
 void HTextValue.removeHKeyListener(HKeyListener l)
          Removes the specified HKeyListener so that it no longer receives HKeyEvent events from this HTextValue.
 void HSinglelineEntry.removeHKeyListener(HKeyListener l)
          Removes the specified HKeyListener so that it no longer receives HKeyEvent events from this HTextValue.