public abstract class DelegatingObservableList<E>
extends javafx.collections.ObservableListBase<E>
implements javafx.collections.ObservableList<E>
Constructor and Description |
---|
DelegatingObservableList(javafx.collections.ObservableList<E> delegate) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E e) |
void |
add(int index,
E element) |
boolean |
addAll(java.util.Collection<? extends E> c) |
boolean |
addAll(E... elements) |
boolean |
addAll(int index,
java.util.Collection<? extends E> c) |
void |
clear() |
boolean |
contains(java.lang.Object o) |
boolean |
containsAll(java.util.Collection<?> c) |
E |
get(int index) |
protected javafx.collections.ObservableList<E> |
getDelegate() |
int |
indexOf(java.lang.Object o) |
boolean |
isEmpty() |
java.util.Iterator<E> |
iterator() |
int |
lastIndexOf(java.lang.Object o) |
java.util.ListIterator<E> |
listIterator() |
java.util.ListIterator<E> |
listIterator(int index) |
E |
remove(int index) |
void |
remove(int from,
int to) |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection<?> c) |
boolean |
removeAll(E... elements) |
boolean |
retainAll(java.util.Collection<?> c) |
boolean |
retainAll(E... elements) |
E |
set(int index,
E element) |
boolean |
setAll(java.util.Collection<? extends E> col) |
boolean |
setAll(E... elements) |
int |
size() |
protected abstract void |
sourceChanged(javafx.collections.ListChangeListener.Change<? extends E> c) |
java.util.List<E> |
subList(int fromIndex,
int toIndex) |
java.lang.Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
addListener, addListener, beginChange, endChange, fireChange, hasListeners, nextAdd, nextPermutation, nextRemove, nextRemove, nextReplace, nextSet, nextUpdate, removeListener, removeListener
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
public DelegatingObservableList(@Nonnull javafx.collections.ObservableList<E> delegate)
@Nonnull protected javafx.collections.ObservableList<E> getDelegate()
protected abstract void sourceChanged(@Nonnull javafx.collections.ListChangeListener.Change<? extends E> c)
public boolean removeAll(E... elements)
public void remove(int from, int to)
public E remove(int index)
public int size()
public int lastIndexOf(java.lang.Object o)
public boolean isEmpty()
public boolean addAll(E... elements)
public java.util.List<E> subList(int fromIndex, int toIndex)
public void add(int index, E element)
public boolean containsAll(java.util.Collection<?> c)
public void clear()
public java.util.Iterator<E> iterator()
public boolean removeAll(java.util.Collection<?> c)
public <T> T[] toArray(T[] a)
public boolean remove(java.lang.Object o)
public boolean addAll(java.util.Collection<? extends E> c)
public boolean retainAll(E... elements)
public boolean retainAll(java.util.Collection<?> c)
public boolean contains(java.lang.Object o)
public boolean setAll(java.util.Collection<? extends E> col)
public java.util.ListIterator<E> listIterator(int index)
public boolean add(E e)
public boolean addAll(int index, java.util.Collection<? extends E> c)
public java.lang.Object[] toArray()
public java.util.ListIterator<E> listIterator()
public E get(int index)
public boolean setAll(E... elements)