All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.java.swing.event.ListDataListener

public interface ListDataListener
extends EventListener
ListDataListener


Method Index

 o contentsChanged(ListDataEvent)
Sent when the contents of the list has changed in a way that's to complex to characterize with the previous methods.
 o intervalAdded(ListDataEvent)
Sent after the indices in the index0,index1 interval have been inserted in the data model.
 o intervalRemoved(ListDataEvent)
Sent after the indices in the index0,index1 interval have been removed from the data model.

Methods

 o intervalAdded
 public abstract void intervalAdded(ListDataEvent e)
Sent after the indices in the index0,index1 interval have been inserted in the data model. The new interval includes both index0 and index1.

 o intervalRemoved
 public abstract void intervalRemoved(ListDataEvent e)
Sent after the indices in the index0,index1 interval have been removed from the data model. The interval includes both index0 and index1.

 o contentsChanged
 public abstract void contentsChanged(ListDataEvent e)
Sent when the contents of the list has changed in a way that's to complex to characterize with the previous methods. Index0 and index1 bracket the change.


All Packages  Class Hierarchy  This Package  Previous  Next  Index