| 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.ShortCollection; |
| 20 | |
import org.apache.commons.collections.primitives.ShortList; |
| 21 | |
import org.apache.commons.collections.primitives.ShortListIterator; |
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
abstract class BaseProxyShortList extends BaseProxyShortCollection implements ShortList { |
| 31 | |
protected abstract ShortList getProxiedList(); |
| 32 | |
|
| 33 | |
protected final ShortCollection getProxiedCollection() { |
| 34 | 7 | return getProxiedList(); |
| 35 | |
} |
| 36 | |
|
| 37 | 16 | protected BaseProxyShortList() { |
| 38 | 16 | } |
| 39 | |
|
| 40 | |
public void add(int index, short element) { |
| 41 | 1 | getProxiedList().add(index,element); |
| 42 | 1 | } |
| 43 | |
|
| 44 | |
public boolean addAll(int index, ShortCollection collection) { |
| 45 | 1 | return getProxiedList().addAll(index,collection); |
| 46 | |
} |
| 47 | |
|
| 48 | |
public short get(int index) { |
| 49 | 2 | return getProxiedList().get(index); |
| 50 | |
} |
| 51 | |
|
| 52 | |
public int indexOf(short element) { |
| 53 | 1 | return getProxiedList().indexOf(element); |
| 54 | |
} |
| 55 | |
|
| 56 | |
public int lastIndexOf(short element) { |
| 57 | 1 | return getProxiedList().lastIndexOf(element); |
| 58 | |
} |
| 59 | |
|
| 60 | |
public ShortListIterator listIterator() { |
| 61 | 1 | return getProxiedList().listIterator(); |
| 62 | |
} |
| 63 | |
|
| 64 | |
public ShortListIterator listIterator(int index) { |
| 65 | 1 | return getProxiedList().listIterator(index); |
| 66 | |
} |
| 67 | |
|
| 68 | |
public short removeElementAt(int index) { |
| 69 | 1 | return getProxiedList().removeElementAt(index); |
| 70 | |
} |
| 71 | |
|
| 72 | |
public short set(int index, short element) { |
| 73 | 1 | return getProxiedList().set(index,element); |
| 74 | |
} |
| 75 | |
|
| 76 | |
public ShortList subList(int fromIndex, int toIndex) { |
| 77 | 1 | return getProxiedList().subList(fromIndex,toIndex); |
| 78 | |
} |
| 79 | |
|
| 80 | |
} |