1 | public boolean basicContains(Object object)↵ | | 1 | public boolean basicContains(Object object)↵
|
2 | {↵ | | 2 | {↵
|
3 | return super.contains(object);↵ | | 3 | return super.contains(object);↵
|
4 | }↵ | | 4 | }↵
|
|
5 | public boolean basicContainsAll(Collection<?> collection)↵ | | 5 | public boolean basicContainsAll(Collection<?> collection)↵
|
6 | {↵ | | 6 | {↵
|
7 | return super.containsAll(collection);↵ | | 7 | return super.containsAll(collection);↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public int basicIndexOf(Object object)↵ | | 9 | public int basicIndexOf(Object object)↵
|
10 | {↵ | | 10 | {↵
|
11 | return super.indexOf(object);↵ | | 11 | return super.indexOf(object);↵
|
12 | }↵ | | 12 | }↵
|
|
13 | public int basicLastIndexOf(Object object)↵ | | 13 | public int basicLastIndexOf(Object object)↵
|
14 | {↵ | | 14 | {↵
|
15 | return super.lastIndexOf(object);↵ | | 15 | return super.lastIndexOf(object);↵
|
16 | }↵ | | 16 | }↵
|
|
17 | public Object[] basicToArray()↵ | | 17 | public Object[] basicToArray()↵
|
18 | {↵ | | 18 | {↵
|
19 | return super.toArray();↵ | | 19 | return super.toArray();↵
|
20 | }↵ | | 20 | }↵
|
|
21 | public <T> T[] basicToArray(T[] array)↵ | | 21 | public <T> T[] basicToArray(T[] array)↵
|
22 | {↵ | | 22 | {↵
|
23 | return super.toArray(array); | | 23 | return super.toArray(array);
|