org.havi.ui.event
Interface HItemListener

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

public interface HItemListener
extends java.util.EventListener

The HItemListener interface enables the reception of HItemEvents, as generated by objects implementing HItemValue.


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 currentItemChanged(HItemEvent e)
          Called when a change to the current item of the HItemValue occurs.
 void selectionChanged(HItemEvent e)
          Called when a change to the selection mode or the set of selected items held by the HItemValue occurs.
 

Method Detail

selectionChanged

public void selectionChanged(HItemEvent e)
Called when a change to the selection mode or the set of selected items held by the HItemValue occurs.

Parameters:
e - is the HItemEvent generated by the object implementing HItemValue.

currentItemChanged

public void currentItemChanged(HItemEvent e)
Called when a change to the current item of the HItemValue occurs.

Parameters:
e - is the HItemEvent generated by the object implementing HItemValue.