| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.apache.commons.collections.primitives.decorators; |
| 18 | |
|
| 19 | |
import org.apache.commons.collections.primitives.DoubleCollection; |
| 20 | |
import org.apache.commons.collections.primitives.DoubleIterator; |
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
abstract class BaseProxyDoubleCollection implements DoubleCollection { |
| 30 | |
protected abstract DoubleCollection getProxiedCollection(); |
| 31 | |
|
| 32 | 17 | protected BaseProxyDoubleCollection() { |
| 33 | 17 | } |
| 34 | |
|
| 35 | |
public boolean add(double element) { |
| 36 | 1 | return getProxiedCollection().add(element); |
| 37 | |
} |
| 38 | |
|
| 39 | |
public boolean addAll(DoubleCollection c) { |
| 40 | 1 | return getProxiedCollection().addAll(c); |
| 41 | |
} |
| 42 | |
|
| 43 | |
public void clear() { |
| 44 | 1 | getProxiedCollection().clear(); |
| 45 | 1 | } |
| 46 | |
|
| 47 | |
public boolean contains(double element) { |
| 48 | 1 | return getProxiedCollection().contains(element); |
| 49 | |
} |
| 50 | |
|
| 51 | |
public boolean containsAll(DoubleCollection c) { |
| 52 | 1 | return getProxiedCollection().containsAll(c); |
| 53 | |
} |
| 54 | |
|
| 55 | |
public boolean isEmpty() { |
| 56 | 2 | return getProxiedCollection().isEmpty(); |
| 57 | |
} |
| 58 | |
|
| 59 | |
public DoubleIterator iterator() { |
| 60 | 1 | return getProxiedCollection().iterator(); |
| 61 | |
} |
| 62 | |
|
| 63 | |
public boolean removeAll(DoubleCollection c) { |
| 64 | 1 | return getProxiedCollection().removeAll(c); |
| 65 | |
} |
| 66 | |
|
| 67 | |
public boolean removeElement(double element) { |
| 68 | 1 | return getProxiedCollection().removeElement(element); |
| 69 | |
} |
| 70 | |
|
| 71 | |
public boolean retainAll(DoubleCollection c) { |
| 72 | 1 | return getProxiedCollection().retainAll(c); |
| 73 | |
} |
| 74 | |
|
| 75 | |
public int size() { |
| 76 | 6 | return getProxiedCollection().size(); |
| 77 | |
} |
| 78 | |
|
| 79 | |
public double[] toArray() { |
| 80 | 1 | return getProxiedCollection().toArray(); |
| 81 | |
} |
| 82 | |
|
| 83 | |
public double[] toArray(double[] a) { |
| 84 | 1 | return getProxiedCollection().toArray(a); |
| 85 | |
} |
| 86 | |
|
| 87 | |
|
| 88 | |
|
| 89 | |
public boolean equals(Object obj) { |
| 90 | 1 | return getProxiedCollection().equals(obj); |
| 91 | |
} |
| 92 | |
|
| 93 | |
public int hashCode() { |
| 94 | 1 | return getProxiedCollection().hashCode(); |
| 95 | |
} |
| 96 | |
|
| 97 | |
public String toString() { |
| 98 | 1 | return getProxiedCollection().toString(); |
| 99 | |
} |
| 100 | |
|
| 101 | |
} |