public Object[] toArray(Object[] a) {
   return myList.toArray(a);
 }
 public Object[] toArray() {
   return myList.toArray();
 }