javax.swing.plaf.basic
Class BasicComboPopup.ListDataHandler

java.lang.Object
  extended by javax.swing.plaf.basic.BasicComboPopup.ListDataHandler
All Implemented Interfaces:
EventListener, ListDataListener
Enclosing class:
BasicComboPopup

public class BasicComboPopup.ListDataHandler
extends Object
implements ListDataListener

This class is not used any more.


Constructor Summary
BasicComboPopup.ListDataHandler()
           
 
Method Summary
 void contentsChanged(ListDataEvent e)
          Notifies the listener that the contents of the list have changed in some way.
 void intervalAdded(ListDataEvent e)
          Notifies the listener that one or more items have been added to the list.
 void intervalRemoved(ListDataEvent e)
          Notifies the listener that one or more items have been removed from the list.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BasicComboPopup.ListDataHandler

public BasicComboPopup.ListDataHandler()
Method Detail

contentsChanged

public void contentsChanged(ListDataEvent e)
Description copied from interface: ListDataListener
Notifies the listener that the contents of the list have changed in some way. This method will be called if the change cannot be notified via the ListDataListener.intervalAdded(ListDataEvent) or the ListDataListener.intervalRemoved(ListDataEvent) methods.

Specified by:
contentsChanged in interface ListDataListener
Parameters:
e - the event.

intervalAdded

public void intervalAdded(ListDataEvent e)
Description copied from interface: ListDataListener
Notifies the listener that one or more items have been added to the list. The event argument can supply the indices for the range of items added.

Specified by:
intervalAdded in interface ListDataListener
Parameters:
e - the event.

intervalRemoved

public void intervalRemoved(ListDataEvent e)
Description copied from interface: ListDataListener
Notifies the listener that one or more items have been removed from the list. The event argument can supply the indices for the range of items removed.

Specified by:
intervalRemoved in interface ListDataListener
Parameters:
e - the event.