public Object clone() {
   TShortArrayList list = null;
   try {
     list = (TShortArrayList) super.clone();
     list._data = this.toNativeArray();
   } catch (CloneNotSupportedException ex) {
   }
   return list;
 }