public class ReferenceList<T> extends ArrayList<T>
| Modifier and Type | Field and Description | 
|---|---|
| private Set<T> | backingSet | 
modCount| Constructor and Description | 
|---|
| ReferenceList() | 
| ReferenceList(Collection<? extends T> c) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | add(int index,
   T element) | 
| boolean | add(T element) | 
| boolean | addAll(Collection<? extends T> c) | 
| boolean | addAll(int index,
      Collection<? extends T> c) | 
| void | clear() | 
| boolean | contains(Object o) | 
| boolean | containsAll(Collection<?> c) | 
| boolean | isEmpty() | 
| T | remove(int index) | 
| boolean | remove(Object o) | 
| boolean | removeAll(Collection<?> c) | 
| boolean | retainAll(Collection<?> c) | 
| T | set(int index,
   T element) | 
clone, ensureCapacity, get, indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, size, subList, toArray, toArray, trimToSizeequals, hashCodetoStringpublic ReferenceList()
public ReferenceList(Collection<? extends T> c)
public boolean add(T element)
public void add(int index,
       T element)
public boolean addAll(Collection<? extends T> c)
public boolean addAll(int index,
             Collection<? extends T> c)
public void clear()
public boolean contains(Object o)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<T>containsAll in interface List<T>containsAll in class AbstractCollection<T>public boolean isEmpty()
public T remove(int index)
public boolean remove(Object o)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
Copyright © 2015 Open Microscopy Environment