E - the type of the list elementspublic interface ObservableList2<E> extends ObservableList<E>
ObservableListArrayListModel and LinkedListModel
implement ObservableList2.| Modifier and Type | Method and Description |
|---|---|
void |
fireContentsChanged(int index)
Notifies all registered
ListDataListeners that the elemen
at the specified index has changed. |
void |
fireContentsChanged(int index0,
int index1)
Notifies all registered
ListDataListeners that the elemen
at the specified index has changed. |
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArrayaddListDataListener, getElementAt, getSize, removeListDataListenervoid fireContentsChanged(int index)
ListDataListeners that the elemen
at the specified index has changed. Useful if there's a content chang
without any structural change.after the element of the list changes.
index - the index of the element that has changedEventListenerListvoid fireContentsChanged(int index0,
int index1)
ListDataListeners that the elemen
at the specified index has changed. Useful if there's a content chang
without any structural change.after one or more element of the list change. The changed element are specified by the closed interval index0, index1 -- the end point are included. Note that index0 need not be less than or equal to index1.
index0 - one end of the new intervalindex1 - the other end of the new intervalEventListenerListCopyright © 2009-2014 JGoodies Software GmbH. All Rights Reserved.