Where Am I? Class Hierarchy (JFC) All Classes (JFC)

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

public interface ListDataListener
extends EventListener

ListDataListener


Method Index

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

Methods

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.

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.

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.


Where Am I? Class Hierarchy (JFC) All Classes (JFC)