예제 #1
0
 public ListIterator<T> listIterator(int index) {
   return adapter.listIterator(index);
 }
예제 #2
0
 public T remove(int index) {
   return adapter.remove(index);
 }
예제 #3
0
 public int lastIndexOf(Object o) {
   return adapter.lastIndexOf(o);
 }
예제 #4
0
 public ListIterator<T> listIterator() {
   return adapter.listIterator();
 }
예제 #5
0
 public Object[] toArray() {
   return adapter.toArray();
 }
예제 #6
0
 public boolean add(T e) {
   return adapter.add(e);
 }
예제 #7
0
 public T get(int index) {
   return adapter.get(index);
 }
예제 #8
0
 public T set(int index, T element) {
   return adapter.set(index, element);
 }
예제 #9
0
 public boolean contains(Object o) {
   return adapter.contains(o);
 }
예제 #10
0
 public boolean containsAll(Collection<?> c) {
   return adapter.containsAll(c);
 }
예제 #11
0
 public void clear() {
   adapter.clear();
 }
예제 #12
0
 public boolean addAll(int index, Collection<? extends T> c) {
   return adapter.addAll(index, c);
 }
예제 #13
0
 public boolean addAll(Collection<? extends T> c) {
   return adapter.addAll(c);
 }
예제 #14
0
 public boolean remove(Object o) {
   return adapter.remove(o);
 }
예제 #15
0
 public int indexOf(Object o) {
   return adapter.indexOf(o);
 }
예제 #16
0
 public boolean retainAll(Collection<?> c) {
   return adapter.retainAll(c);
 }
예제 #17
0
 public boolean isEmpty() {
   return adapter.isEmpty();
 }
예제 #18
0
 public int size() {
   return adapter.size();
 }
예제 #19
0
 public Iterator<T> iterator() {
   return adapter.iterator();
 }
예제 #20
0
 public <U> U[] toArray(U[] a) {
   return adapter.toArray(a);
 }
예제 #21
0
 public void add(int index, T element) {
   adapter.add(index, element);
 }