| java.lang.Object nextapp.echo2.app.list.AbstractListModel
All known Subclasses: nextapp.echo2.app.list.DefaultListModel,
AbstractListModel | abstract public class AbstractListModel implements ListModel,Serializable(Code) | | A base class from which ListModel implementations may be
derived. This class provides event listener management facilities.
|
AbstractListModel | public AbstractListModel()(Code) | | Creates a new AbstractListModel.
|
fireContentsChanged | protected void fireContentsChanged(int index0, int index1)(Code) | | Notifies listeners that the contents of the list have changed.
Subclasses must call this method
after one or elements are changed.
Parameters: index0 - the index of the first changed item Parameters: index1 - the index of the last changed item |
fireIntervalAdded | protected void fireIntervalAdded(int index0, int index1)(Code) | | Notifies listeners that an interval of items was added.
Subclasses must call this method
after one or elements are added.
Parameters: index0 - the index of the first added item Parameters: index1 - the index of the last added item |
fireIntervalRemoved | protected void fireIntervalRemoved(int index0, int index1)(Code) | | Notifies listeners that an interval of items was removed.
Subclasses must call this method
after one or elements are removed.
Parameters: index0 - the index of the first removed index Parameters: index1 - the index of the last removed index |
getEventListenerList | protected EventListenerList getEventListenerList()(Code) | | Returns the EventListenerList being used to manage event
listeners.
the listener list |
|
|