public void clear() { myList.clear(); }
public int hashCode() { return myList.hashCode(); }
public boolean addAll(Collection c) { return myList.addAll(c); }
public boolean retainAll(Collection c) { return myList.retainAll(c); }
public boolean remove(Object o) { return myList.remove(o); }
public boolean containsAll(Collection c) { return myList.containsAll(c); }
public Object[] toArray(Object[] a) { return myList.toArray(a); }
public boolean add(Object o) { return myList.add(o); }
public Object[] toArray() { return myList.toArray(); }
public Iterator iterator() { return myList.iterator(); }
public boolean contains(Object o) { return myList.contains(o); }
public boolean isEmpty() { return myList.isEmpty(); }
public int size() { return myList.size(); }