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

Packages that use HTextListener
org.havi.ui   
 

Uses of HTextListener in org.havi.ui
 

Classes in org.havi.ui that implement HTextListener
 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 HTextListener
static HTextListener HEventMulticaster.add(HTextListener a, HTextListener b)
          Adds HTextListener-a with HTextListener-b and returns the resulting multicast listener.
static HTextListener HEventMulticaster.remove(HTextListener l, HTextListener oldl)
          Removes the old HTextListener from HTextListener-l and returns the resulting multicast listener.
 

Methods in org.havi.ui with parameters of type HTextListener
static HTextListener HEventMulticaster.add(HTextListener a, HTextListener b)
          Adds HTextListener-a with HTextListener-b and returns the resulting multicast listener.
 void HSinglelineEntry.addHTextListener(HTextListener l)
          Adds the specified HTextListener to receive HTextEvent 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 HTextValue.addHTextListener(HTextListener l)
          Adds the specified HTextListener to receive HTextEvent 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 HTextListener HEventMulticaster.remove(HTextListener l, HTextListener oldl)
          Removes the old HTextListener from HTextListener-l and returns the resulting multicast listener.
 void HSinglelineEntry.removeHTextListener(HTextListener l)
          Removes the specified HTextListener so that it no longer receives HTextEvent events from this HTextValue.
 void HTextValue.removeHTextListener(HTextListener l)
          Removes the specified HTextListener so that it no longer receives HTextEvent events from this HTextValue.