nextapp.echo.event
Interface ListDataListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
DynaListBox, DynaSelectField, PickListUI

public interface ListDataListener
extends java.util.EventListener

The listener interface for receiving list data events.

See Also:
ListDataEvent

Method Summary
 void contentsChanged(ListDataEvent e)
          Indicates that the contents of the list have change.
 void intervalAdded(ListDataEvent e)
          Indicates that one or more items have been added to the list.
 void intervalRemoved(ListDataEvent e)
          Indicates that one or more items have been removed from the list.
 

Method Detail

contentsChanged

void contentsChanged(ListDataEvent e)
Indicates that the contents of the list have change.

Parameters:
e - The ListDataEvent describing the update.

intervalAdded

void intervalAdded(ListDataEvent e)
Indicates that one or more items have been added to the list.

Parameters:
e - The ListDataEvent describing the update.

intervalRemoved

void intervalRemoved(ListDataEvent e)
Indicates that one or more items have been removed from the list.

Parameters:
e - The ListDataEvent describing the update.