org.havi.ui.event
Interface HTextListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
HEventMulticaster

public interface HTextListener
extends java.util.EventListener

The HTextListener interface enables the reception of HTextEvents, as generated by objects implementing HTextValue.


The parameters to the constructors are as follows, in cases where parameters are not used, then the constructor should use the default values.

Default parameter values exposed in the constructors

ParameterDescriptionDefault value Set methodGet method
None.

Default parameter values not exposed in the constructors

DescriptionDefault valueSet method Get method
None.


Method Summary
 void caretMoved(HTextEvent e)
          Called when the caret position of an HTextValue component has moved.
 void textChanged(HTextEvent e)
          Called when the textual content of an HTextValue component has changed.
 

Method Detail

textChanged

public void textChanged(HTextEvent e)
Called when the textual content of an HTextValue component has changed.

Parameters:
e - is the HTextEvent generated by the object implementing HTextValue.

caretMoved

public void caretMoved(HTextEvent e)
Called when the caret position of an HTextValue component has moved.

Parameters:
e - is the HTextEvent generated by the object implementing HTextValue.