All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.java.swing.AbstractListModel

java.lang.Object
   |
   +----com.sun.java.swing.AbstractListModel

public abstract class AbstractListModel
extends Object
implements ListModel, Serializable
The Abstract definition for the data model the provides a List with its contents.

Warning: serialized objects of this class will not be compatible with future swing releases. The current serialization support is appropriate for short term storage or RMI between Swing1.0 applications. It will not be possible to load serialized Swing1.0 objects with future releases of Swing. The JDK1.2 release of Swing will be the compatibility baseline for the serialized form of Swing objects.


Variable Index

 o listenerList

Constructor Index

 o AbstractListModel()

Method Index

 o addListDataListener(ListDataListener)
Add a listener to the list that's notified each time a change to the data model occurs.
 o fireContentsChanged(Object, int, int)
AbstractListModel subclasses must call this method after one or more elements of the list change.
 o fireIntervalAdded(Object, int, int)
 o fireIntervalRemoved(Object, int, int)
 o getElementAt(int)
Returns the value at the specified index.
 o getSize()
Returns the length of the list.
 o removeListDataListener(ListDataListener)
Remove a listener from the list that's notified each time a change to the data model occurs.

Variables

 o listenerList
 protected EventListenerList listenerList

Constructors

 o AbstractListModel
 public AbstractListModel()

Methods

 o addListDataListener
 public void addListDataListener(ListDataListener l)
Add a listener to the list that's notified each time a change to the data model occurs.

Parameters:
l - the ListDataListener
 o removeListDataListener
 public void removeListDataListener(ListDataListener l)
Remove a listener from the list that's notified each time a change to the data model occurs.

Parameters:
l - the ListDataListener
 o fireContentsChanged
 protected void fireContentsChanged(Object source,
                                    int index0,
                                    int index1)
AbstractListModel subclasses must call this method after one or more elements of the list change. The changed elements are specified by a closed interval index0, index1, i.e. the range that includes both index0 and index1. Note that index0 need not be less than or equal to index1.

Parameters:
source - The ListModel that changed, typically "this".
index0 - One end of the new interval.
index1 - The other end of the new interval.
See Also:
EventListenerList, DefaultListModel
 o fireIntervalAdded
 protected void fireIntervalAdded(Object source,
                                  int index0,
                                  int index1)
 o fireIntervalRemoved
 protected void fireIntervalRemoved(Object source,
                                    int index0,
                                    int index1)

All Packages  Class Hierarchy  This Package  Previous  Next  Index