public class ObservableList<E> extends ArrayList<E>
| Modifier and Type | Class and Description |
|---|---|
static interface |
ObservableList.IObserver |
modCount| Constructor and Description |
|---|
ObservableList() |
ObservableList(Collection<? extends E> c) |
ObservableList(int initialCapacity) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E e) |
void |
add(int index,
E element) |
boolean |
addAll(Collection<? extends E> c) |
boolean |
addAll(int index,
Collection<? extends E> c) |
void |
addObserver(ObservableList.IObserver observer) |
void |
removeObserver(ObservableList.IObserver observer) |
E |
set(int index,
E element) |
clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeRange, retainAll, size, subList, toArray, toArray, trimToSizeequals, hashCodecontainsAll, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsAll, equals, hashCodepublic ObservableList()
public ObservableList(Collection<? extends E> c)
public ObservableList(int initialCapacity)
public boolean add(E e)
public void add(int index,
E element)
public boolean addAll(Collection<? extends E> c)
public boolean addAll(int index,
Collection<? extends E> c)
public void addObserver(ObservableList.IObserver observer)
public void removeObserver(ObservableList.IObserver observer)
Copyright © 2016. All rights reserved.