コード例 #1
0
 public void clear() {
   myList.clear();
 }
コード例 #2
0
 public int hashCode() {
   return myList.hashCode();
 }
コード例 #3
0
 public boolean addAll(Collection c) {
   return myList.addAll(c);
 }
コード例 #4
0
 public boolean retainAll(Collection c) {
   return myList.retainAll(c);
 }
コード例 #5
0
 public boolean remove(Object o) {
   return myList.remove(o);
 }
コード例 #6
0
 public boolean containsAll(Collection c) {
   return myList.containsAll(c);
 }
コード例 #7
0
 public Object[] toArray(Object[] a) {
   return myList.toArray(a);
 }
コード例 #8
0
 public boolean add(Object o) {
   return myList.add(o);
 }
コード例 #9
0
 public Object[] toArray() {
   return myList.toArray();
 }
コード例 #10
0
 public Iterator iterator() {
   return myList.iterator();
 }
コード例 #11
0
 public boolean contains(Object o) {
   return myList.contains(o);
 }
コード例 #12
0
 public boolean isEmpty() {
   return myList.isEmpty();
 }
コード例 #13
0
 public int size() {
   return myList.size();
 }