Module com.iamsoft.util.ui
Class ExtractingObservableList<T>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- javafx.collections.ObservableListBase<T>
-
- com.iamsoft.util.ui.javafx.collections.ProxyObservableList<T>
-
- com.iamsoft.util.ui.javafx.collections.ExtractingObservableList<T>
-
- Type Parameters:
T
- Type of element stored in list.
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,List<T>
,javafx.beans.Observable
,javafx.collections.ObservableList<T>
public class ExtractingObservableList<T> extends ProxyObservableList<T>
Decorates observable list and also fires 'update' events.- See Also:
FXCollections.observableList(List, Callback)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.iamsoft.util.ui.javafx.collections.ProxyObservableList
ProxyObservableList.Exposed<T>, ProxyObservableList.Propertied<T>
-
-
Field Summary
-
Fields inherited from class java.util.AbstractList
modCount
-
-
Constructor Summary
Constructors Constructor Description ExtractingObservableList(javafx.collections.ObservableList<T> pDelegate, javafx.util.Callback<T,javafx.beans.Observable[]> pExtractor)
ExtractingObservableList(javafx.collections.ObservableList<T> pDelegate, javafx.util.Callback<T,javafx.beans.Observable[]> pExtractor, boolean pForwardUpdates)
ExtractingObservableList(javafx.util.Callback<T,javafx.beans.Observable[]> pExtractor)
-
Method Summary
-
Methods inherited from class com.iamsoft.util.ui.javafx.collections.ProxyObservableList
add, add, addAll, addAll, addAll, clear, contains, containsAll, delegateProperty, equals, get, getDelegate, hashCode, indexOf, isEmpty, lastIndexOf, remove, remove, remove, removeAll, removeAll, replaceAll, retainAll, retainAll, set, setAll, setAll, size, toString
-
Methods inherited from class javafx.collections.ObservableListBase
addListener, addListener, beginChange, endChange, fireChange, hasListeners, nextAdd, nextPermutation, nextRemove, nextRemove, nextReplace, nextSet, nextUpdate, removeListener, removeListener
-
Methods inherited from class java.util.AbstractList
iterator, listIterator, listIterator, removeRange, subList
-
Methods inherited from class java.util.AbstractCollection
toArray, toArray
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
iterator, listIterator, listIterator, sort, spliterator, subList, toArray, toArray
-
-
-
-
Constructor Detail
-
ExtractingObservableList
public ExtractingObservableList(javafx.util.Callback<T,javafx.beans.Observable[]> pExtractor)
-
ExtractingObservableList
public ExtractingObservableList(javafx.collections.ObservableList<T> pDelegate, javafx.util.Callback<T,javafx.beans.Observable[]> pExtractor)
-
-