E - The type of the elements in this listpublic class DelegateListenerList<E> extends DelegateList<E>
| Constructor and Description |
|---|
DelegateListenerList(java.util.List<E> delegate,
java.util.function.Consumer<E> addListener,
java.util.function.Consumer<E> removeListener) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E e) |
boolean |
addAll(java.util.Collection<? extends E> c) |
boolean |
addAll(int index,
java.util.Collection<? extends E> c) |
void |
clear() |
java.util.Iterator<E> |
iterator() |
java.util.ListIterator<E> |
listIterator() |
java.util.ListIterator<E> |
listIterator(int index) |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection<?> c) |
boolean |
retainAll(java.util.Collection<?> c) |
java.util.List<E> |
subList(int fromIndex,
int toIndex) |
add, contains, containsAll, get, indexOf, isEmpty, lastIndexOf, remove, set, size, toArray, toArray@Nonnull public java.util.Iterator<E> iterator()
public boolean add(E e)
add in interface java.util.Collection<E>add in interface java.util.List<E>add in class DelegateList<E>public boolean remove(java.lang.Object o)
remove in interface java.util.Collection<E>remove in interface java.util.List<E>remove in class DelegateList<E>public boolean addAll(@Nonnull
java.util.Collection<? extends E> c)
addAll in interface java.util.Collection<E>addAll in interface java.util.List<E>addAll in class DelegateList<E>public boolean addAll(int index,
@Nonnull
java.util.Collection<? extends E> c)
addAll in interface java.util.List<E>addAll in class DelegateList<E>public boolean removeAll(@Nonnull
java.util.Collection<?> c)
removeAll in interface java.util.Collection<E>removeAll in interface java.util.List<E>removeAll in class DelegateList<E>public boolean retainAll(@Nonnull
java.util.Collection<?> c)
retainAll in interface java.util.Collection<E>retainAll in interface java.util.List<E>retainAll in class DelegateList<E>public void clear()
clear in interface java.util.Collection<E>clear in interface java.util.List<E>clear in class DelegateList<E>@Nonnull public java.util.ListIterator<E> listIterator()
listIterator in interface java.util.List<E>listIterator in class DelegateList<E>@Nonnull public java.util.ListIterator<E> listIterator(int index)
listIterator in interface java.util.List<E>listIterator in class DelegateList<E>@Nonnull public java.util.List<E> subList(int fromIndex, int toIndex)
subList in interface java.util.List<E>subList in class DelegateList<E>