1 17 package org.apache.commons.collections.primitives.adapters; 18 19 import java.util.Collection ; 20 21 import org.apache.commons.collections.primitives.IntCollection; 22 import org.apache.commons.collections.primitives.IntIterator; 23 24 29 abstract class AbstractCollectionIntCollection implements IntCollection { 30 protected AbstractCollectionIntCollection() { 31 } 32 33 public boolean add(int element) { 34 return getCollection().add(new Integer (element)); 35 } 36 37 public boolean addAll(IntCollection c) { 38 return getCollection().addAll(IntCollectionCollection.wrap(c)); 39 } 40 41 public void clear() { 42 getCollection().clear(); 43 } 44 45 public boolean contains(int element) { 46 return getCollection().contains(new Integer (element)); 47 } 48 49 public boolean containsAll(IntCollection c) { 50 return getCollection().containsAll(IntCollectionCollection.wrap(c)); 51 } 52 53 public String toString() { 54 return getCollection().toString(); 55 } 56 57 public boolean isEmpty() { 58 return getCollection().isEmpty(); 59 } 60 61 68 public IntIterator iterator() { 69 return IteratorIntIterator.wrap(getCollection().iterator()); 70 } 71 72 public boolean removeElement(int element) { 73 return getCollection().remove(new Integer (element)); 74 } 75 76 public boolean removeAll(IntCollection c) { 77 return getCollection().removeAll(IntCollectionCollection.wrap(c)); 78 } 79 80 public boolean retainAll(IntCollection c) { 81 return getCollection().retainAll(IntCollectionCollection.wrap(c)); 82 } 83 84 public int size() { 85 return getCollection().size(); 86 } 87 88 public int[] toArray() { 89 Object [] src = getCollection().toArray(); 90 int[] dest = new int[src.length]; 91 for(int i=0;i<src.length;i++) { 92 dest[i] = ((Number )(src[i])).intValue(); 93 } 94 return dest; 95 } 96 97 public int[] toArray(int[] dest) { 98 Object [] src = getCollection().toArray(); 99 if(dest.length < src.length) { 100 dest = new int[src.length]; 101 } 102 for(int i=0;i<src.length;i++) { 103 dest[i] = ((Number )(src[i])).intValue(); 104 } 105 return dest; 106 } 107 108 protected abstract Collection getCollection(); 109 110 } 111 | Popular Tags |