예제 #1
0
 @Override
 protected void store() throws Exception {
   ArrayList list = new ArrayList();
   list.add("42");
   list.add(new Item("item"));
   ListHolder listHolder = new ListHolder(list);
   store(listHolder);
 }
예제 #2
0
 public int hashCode() {
   return myList.hashCode();
 }
예제 #3
0
 public void clear() {
   myList.clear();
 }
예제 #4
0
 public boolean retainAll(Collection c) {
   return myList.retainAll(c);
 }
예제 #5
0
 public boolean addAll(Collection c) {
   return myList.addAll(c);
 }
예제 #6
0
 public boolean containsAll(Collection c) {
   return myList.containsAll(c);
 }
예제 #7
0
 public boolean remove(Object o) {
   return myList.remove(o);
 }
예제 #8
0
 public boolean add(Object o) {
   return myList.add(o);
 }
예제 #9
0
 public Object[] toArray(Object[] a) {
   return myList.toArray(a);
 }
예제 #10
0
 public Object[] toArray() {
   return myList.toArray();
 }
예제 #11
0
 public Iterator iterator() {
   return myList.iterator();
 }
예제 #12
0
 public boolean contains(Object o) {
   return myList.contains(o);
 }
예제 #13
0
 public boolean isEmpty() {
   return myList.isEmpty();
 }
예제 #14
0
 public int size() {
   return myList.size();
 }