KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > collections > primitives > adapters > AbstractListDoubleList


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.commons.collections.primitives.adapters;
18
19 import java.util.Collection JavaDoc;
20 import java.util.List JavaDoc;
21
22 import org.apache.commons.collections.primitives.DoubleCollection;
23 import org.apache.commons.collections.primitives.DoubleIterator;
24 import org.apache.commons.collections.primitives.DoubleList;
25 import org.apache.commons.collections.primitives.DoubleListIterator;
26
27 /**
28  *
29  * @since Commons Primitives 1.0
30  * @version $Revision: 480462 $ $Date: 2006-11-29 00:15:00 -0800 (Wed, 29 Nov 2006) $
31  * @author Rodney Waldhoff
32  */

33 abstract class AbstractListDoubleList extends AbstractCollectionDoubleCollection implements DoubleList {
34
35     public void add(int index, double element) {
36         getList().add(index,new Double JavaDoc(element));
37     }
38
39     public boolean addAll(int index, DoubleCollection collection) {
40         return getList().addAll(index,DoubleCollectionCollection.wrap(collection));
41     }
42
43     public double get(int index) {
44         return ((Number JavaDoc)getList().get(index)).doubleValue();
45     }
46
47     public int indexOf(double element) {
48         return getList().indexOf(new Double JavaDoc(element));
49     }
50
51     public int lastIndexOf(double element) {
52         return getList().lastIndexOf(new Double JavaDoc(element));
53     }
54
55     /**
56      * {@link ListIteratorDoubleListIterator#wrap wraps} the
57      * {@link DoubleList DoubleList}
58      * returned by my underlying
59      * {@link DoubleListIterator DoubleListIterator},
60      * if any.
61      */

62     public DoubleListIterator listIterator() {
63         return ListIteratorDoubleListIterator.wrap(getList().listIterator());
64     }
65
66     /**
67      * {@link ListIteratorDoubleListIterator#wrap wraps} the
68      * {@link DoubleList DoubleList}
69      * returned by my underlying
70      * {@link DoubleListIterator DoubleListIterator},
71      * if any.
72      */

73     public DoubleListIterator listIterator(int index) {
74         return ListIteratorDoubleListIterator.wrap(getList().listIterator(index));
75     }
76
77     public double removeElementAt(int index) {
78         return ((Number JavaDoc)getList().remove(index)).doubleValue();
79     }
80
81     public double set(int index, double element) {
82         return ((Number JavaDoc)getList().set(index,new Double JavaDoc(element))).doubleValue();
83     }
84
85     public DoubleList subList(int fromIndex, int toIndex) {
86         return ListDoubleList.wrap(getList().subList(fromIndex,toIndex));
87     }
88
89     public boolean equals(Object JavaDoc obj) {
90         if(obj instanceof DoubleList) {
91             DoubleList that = (DoubleList)obj;
92             if(this == that) {
93                 return true;
94             } else if(this.size() != that.size()) {
95                 return false;
96             } else {
97                 DoubleIterator thisiter = iterator();
98                 DoubleIterator thatiter = that.iterator();
99                 while(thisiter.hasNext()) {
100                     if(thisiter.next() != thatiter.next()) {
101                         return false;
102                     }
103                 }
104                 return true;
105             }
106         } else {
107             return false;
108         }
109     }
110         
111     public int hashCode() {
112         return getList().hashCode();
113     }
114     
115     final protected Collection JavaDoc getCollection() {
116         return getList();
117     }
118     
119     abstract protected List JavaDoc getList();
120 }
121
Popular Tags