Uses of Interface
com.sun.java.util.ObservableList

Packages that use ObservableList
com.sun.java.util The classes in this package enabling observing changes to collection classes. 
 

Uses of ObservableList in com.sun.java.util
 

Methods in com.sun.java.util that return ObservableList
 ObservableList<E> BindingCollections.ObservableListHelper.getObservableList()
          Returns the ObservableList.
static
<E> ObservableList<E>
BindingCollections.observableList(java.util.List<E> list)
          Creates and returns an ObservableList wrapping the supplied List.
 

Methods in com.sun.java.util with parameters of type ObservableList
 void ObservableListListener.listElementPropertyChanged(ObservableList list, int index)
          Notification than a property of an element in this list has changed.
 void ObservableListListener.listElementReplaced(ObservableList list, int index, java.lang.Object oldElement)
          Notification that an element has been replaced by another in the list.
 void ObservableListListener.listElementsAdded(ObservableList list, int index, int length)
          Notification that elements have been added to the list.
 void ObservableListListener.listElementsRemoved(ObservableList list, int index, java.util.List oldElements)
          Notification that elements have been removed from the list.