ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/ArrayList.java
Revision: 1.4
Committed: Sat Nov 26 03:12:10 2005 UTC (18 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.3: +14 -14 lines
Log Message:
whitespace

File Contents

# User Rev Content
1 dl 1.1 /*
2     * %W% %E%
3     *
4     * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
5     * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6     */
7    
8     package java.util;
9     import java.util.*; // for javadoc (till 6280605 is fixed)
10    
11     /**
12     * Resizable-array implementation of the <tt>List</tt> interface. Implements
13     * all optional list operations, and permits all elements, including
14     * <tt>null</tt>. In addition to implementing the <tt>List</tt> interface,
15     * this class provides methods to manipulate the size of the array that is
16     * used internally to store the list. (This class is roughly equivalent to
17     * <tt>Vector</tt>, except that it is unsynchronized.)<p>
18     *
19     * The <tt>size</tt>, <tt>isEmpty</tt>, <tt>get</tt>, <tt>set</tt>,
20     * <tt>iterator</tt>, and <tt>listIterator</tt> operations run in constant
21     * time. The <tt>add</tt> operation runs in <i>amortized constant time</i>,
22     * that is, adding n elements requires O(n) time. All of the other operations
23     * run in linear time (roughly speaking). The constant factor is low compared
24     * to that for the <tt>LinkedList</tt> implementation.<p>
25     *
26     * Each <tt>ArrayList</tt> instance has a <i>capacity</i>. The capacity is
27     * the size of the array used to store the elements in the list. It is always
28     * at least as large as the list size. As elements are added to an ArrayList,
29     * its capacity grows automatically. The details of the growth policy are not
30     * specified beyond the fact that adding an element has constant amortized
31     * time cost.<p>
32     *
33     * An application can increase the capacity of an <tt>ArrayList</tt> instance
34     * before adding a large number of elements using the <tt>ensureCapacity</tt>
35     * operation. This may reduce the amount of incremental reallocation.
36     *
37     * <p><strong>Note that this implementation is not synchronized.</strong>
38     * If multiple threads access an <tt>ArrayList</tt> instance concurrently,
39     * and at least one of the threads modifies the list structurally, it
40     * <i>must</i> be synchronized externally. (A structural modification is
41     * any operation that adds or deletes one or more elements, or explicitly
42     * resizes the backing array; merely setting the value of an element is not
43     * a structural modification.) This is typically accomplished by
44     * synchronizing on some object that naturally encapsulates the list.
45     *
46     * If no such object exists, the list should be "wrapped" using the
47     * {@link Collections#synchronizedList Collections.synchronizedList}
48     * method. This is best done at creation time, to prevent accidental
49     * unsynchronized access to the list:<pre>
50     * List list = Collections.synchronizedList(new ArrayList(...));</pre>
51     *
52     * <p>The iterators returned by this class's <tt>iterator</tt> and
53     * <tt>listIterator</tt> methods are <i>fail-fast</i>: if the list is
54     * structurally modified at any time after the iterator is created, in any way
55     * except through the iterator's own <tt>remove</tt> or <tt>add</tt> methods,
56     * the iterator will throw a {@link ConcurrentModificationException}. Thus, in
57     * the face of concurrent modification, the iterator fails quickly and cleanly,
58     * rather than risking arbitrary, non-deterministic behavior at an undetermined
59     * time in the future.<p>
60     *
61     * Note that the fail-fast behavior of an iterator cannot be guaranteed
62     * as it is, generally speaking, impossible to make any hard guarantees in the
63     * presence of unsynchronized concurrent modification. Fail-fast iterators
64     * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
65     * Therefore, it would be wrong to write a program that depended on this
66     * exception for its correctness: <i>the fail-fast behavior of iterators
67     * should be used only to detect bugs.</i><p>
68     *
69     * This class is a member of the
70     * <a href="{@docRoot}/../guide/collections/index.html">
71     * Java Collections Framework</a>.
72     *
73     * @author Josh Bloch
74     * @author Neal Gafter
75     * @version %I%, %G%
76     * @see Collection
77     * @see List
78     * @see LinkedList
79     * @see Vector
80     * @since 1.2
81     */
82    
83     public class ArrayList<E> extends AbstractList<E>
84     implements List<E>, RandomAccess, Cloneable, java.io.Serializable
85     {
86     private static final long serialVersionUID = 8683452581122892189L;
87    
88     /**
89     * The array buffer into which the elements of the ArrayList are stored.
90     * The capacity of the ArrayList is the length of this array buffer.
91     */
92     private transient Object[] elementData;
93    
94     /**
95     * The size of the ArrayList (the number of elements it contains).
96     *
97     * @serial
98     */
99     private int size;
100    
101     /**
102     * Constructs an empty list with the specified initial capacity.
103     *
104     * @param initialCapacity the initial capacity of the list
105     * @exception IllegalArgumentException if the specified initial capacity
106     * is negative
107     */
108     public ArrayList(int initialCapacity) {
109     super();
110     if (initialCapacity < 0)
111     throw new IllegalArgumentException("Illegal Capacity: "+
112     initialCapacity);
113     this.elementData = new Object[initialCapacity];
114     }
115    
116     /**
117     * Constructs an empty list with an initial capacity of ten.
118     */
119     public ArrayList() {
120     this(10);
121     }
122    
123     /**
124     * Constructs a list containing the elements of the specified
125     * collection, in the order they are returned by the collection's
126 dl 1.2 * iterator. The <tt>ArrayList</tt> instance has an initial capacity of
127     * 110% the size of the specified collection.
128 dl 1.1 *
129     * @param c the collection whose elements are to be placed into this list
130     * @throws NullPointerException if the specified collection is null
131     */
132     public ArrayList(Collection<? extends E> c) {
133 dl 1.2 int size = c.size();
134     // 10% for growth
135     int cap = ((size/10)+1)*11;
136     if (cap > 0) {
137     Object[] a = new Object[cap];
138     a[size] = a[size+1] = UNALLOCATED;
139     Object[] b = c.toArray(a);
140     if (b[size] == null && b[size+1] == UNALLOCATED) {
141     b[size+1] = null;
142     elementData = b;
143     this.size = size;
144     return;
145     }
146     }
147     initFromConcurrentlyMutating(c);
148     }
149 jsr166 1.4
150 dl 1.2 private void initFromConcurrentlyMutating(Collection<? extends E> c) {
151     elementData = c.toArray();
152     size = elementData.length;
153     // c.toArray might (incorrectly) not return Object[] (see 6260652)
154     if (elementData.getClass() != Object[].class)
155     elementData = Arrays.copyOf(elementData, size, Object[].class);
156     }
157 jsr166 1.4
158 dl 1.2 private final static Object UNALLOCATED = new Object();
159 jsr166 1.4
160 dl 1.1 /**
161     * Trims the capacity of this <tt>ArrayList</tt> instance to be the
162     * list's current size. An application can use this operation to minimize
163     * the storage of an <tt>ArrayList</tt> instance.
164     */
165     public void trimToSize() {
166     modCount++;
167     int oldCapacity = elementData.length;
168     if (size < oldCapacity) {
169     elementData = Arrays.copyOf(elementData, size);
170     }
171     }
172    
173     /**
174     * Increases the capacity of this <tt>ArrayList</tt> instance, if
175     * necessary, to ensure that it can hold at least the number of elements
176     * specified by the minimum capacity argument.
177     *
178     * @param minCapacity the desired minimum capacity
179     */
180     public void ensureCapacity(int minCapacity) {
181     modCount++;
182     if (minCapacity > elementData.length)
183     growArray(minCapacity);
184     }
185    
186     /**
187     * Increase the capacity of the array.
188     * @param minCapacity the desired minimum capacity
189     */
190     private void growArray(int minCapacity) {
191     int oldCapacity = elementData.length;
192     // Double size if small; else grow by 50%
193 jsr166 1.4 int newCapacity = ((oldCapacity < 64)?
194 dl 1.1 (oldCapacity * 2):
195     ((oldCapacity * 3)/2 + 1));
196     if (newCapacity < minCapacity)
197     newCapacity = minCapacity;
198     elementData = Arrays.copyOf(elementData, newCapacity);
199     }
200    
201     /**
202     * Returns the number of elements in this list.
203     *
204     * @return the number of elements in this list
205     */
206     public int size() {
207     return size;
208     }
209    
210     /**
211     * Returns <tt>true</tt> if this list contains no elements.
212     *
213     * @return <tt>true</tt> if this list contains no elements
214     */
215     public boolean isEmpty() {
216     return size == 0;
217     }
218    
219     /**
220     * Returns <tt>true</tt> if this list contains the specified element.
221     * More formally, returns <tt>true</tt> if and only if this list contains
222     * at least one element <tt>e</tt> such that
223     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
224     *
225     * @param o element whose presence in this list is to be tested
226     * @return <tt>true</tt> if this list contains the specified element
227     */
228     public boolean contains(Object o) {
229     return indexOf(o) >= 0;
230     }
231    
232     /**
233     * Returns the index of the first occurrence of the specified element
234     * in this list, or -1 if this list does not contain the element.
235     * More formally, returns the lowest index <tt>i</tt> such that
236     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
237     * or -1 if there is no such index.
238     */
239     public int indexOf(Object o) {
240     if (o == null) {
241     for (int i = 0; i < size; i++)
242     if (elementData[i]==null)
243     return i;
244     } else {
245     for (int i = 0; i < size; i++)
246     if (o.equals(elementData[i]))
247     return i;
248     }
249     return -1;
250     }
251    
252     /**
253     * Returns the index of the last occurrence of the specified element
254     * in this list, or -1 if this list does not contain the element.
255     * More formally, returns the highest index <tt>i</tt> such that
256     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
257     * or -1 if there is no such index.
258     */
259     public int lastIndexOf(Object o) {
260     if (o == null) {
261     for (int i = size-1; i >= 0; i--)
262     if (elementData[i]==null)
263     return i;
264     } else {
265     for (int i = size-1; i >= 0; i--)
266     if (o.equals(elementData[i]))
267     return i;
268     }
269     return -1;
270     }
271    
272     /**
273     * Returns a shallow copy of this <tt>ArrayList</tt> instance. (The
274     * elements themselves are not copied.)
275     *
276     * @return a clone of this <tt>ArrayList</tt> instance
277     */
278     public Object clone() {
279     try {
280     ArrayList<E> v = (ArrayList<E>) super.clone();
281     v.elementData = Arrays.copyOf(elementData, size);
282     v.modCount = 0;
283     return v;
284     } catch (CloneNotSupportedException e) {
285     // this shouldn't happen, since we are Cloneable
286     throw new InternalError();
287     }
288     }
289    
290     /**
291     * Returns an array containing all of the elements in this list
292     * in proper sequence (from first to last element).
293     *
294     * <p>The returned array will be "safe" in that no references to it are
295     * maintained by this list. (In other words, this method must allocate
296     * a new array). The caller is thus free to modify the returned array.
297     *
298     * <p>This method acts as bridge between array-based and collection-based
299     * APIs.
300     *
301     * @return an array containing all of the elements in this list in
302     * proper sequence
303     */
304     public Object[] toArray() {
305     return Arrays.copyOf(elementData, size);
306     }
307    
308     /**
309     * Returns an array containing all of the elements in this list in proper
310     * sequence (from first to last element); the runtime type of the returned
311     * array is that of the specified array. If the list fits in the
312     * specified array, it is returned therein. Otherwise, a new array is
313     * allocated with the runtime type of the specified array and the size of
314     * this list.
315     *
316     * <p>If the list fits in the specified array with room to spare
317     * (i.e., the array has more elements than the list), the element in
318     * the array immediately following the end of the collection is set to
319     * <tt>null</tt>. (This is useful in determining the length of the
320     * list <i>only</i> if the caller knows that the list does not contain
321     * any null elements.)
322     *
323     * @param a the array into which the elements of the list are to
324     * be stored, if it is big enough; otherwise, a new array of the
325     * same runtime type is allocated for this purpose.
326     * @return an array containing the elements of the list
327     * @throws ArrayStoreException if the runtime type of the specified array
328     * is not a supertype of the runtime type of every element in
329     * this list
330     * @throws NullPointerException if the specified array is null
331     */
332     public <T> T[] toArray(T[] a) {
333     if (a.length < size)
334     // Make a new array of a's runtime type, but my contents:
335     return (T[]) Arrays.copyOf(elementData, size, a.getClass());
336     System.arraycopy(elementData, 0, a, 0, size);
337     if (a.length > size)
338     a[size] = null;
339     return a;
340     }
341    
342     // Positional Access Operations
343    
344 jsr166 1.4 /**
345     * Create and return an appropriate exception for indexing errors
346 dl 1.1 */
347     private static IndexOutOfBoundsException rangeException(int i, int s) {
348     return new IndexOutOfBoundsException("Index: " + i + ", Size: " + s);
349     }
350    
351     // Positional Access Operations
352    
353     /**
354     * Returns the element at the specified position in this list.
355     *
356     * @param index index of the element to return
357     * @return the element at the specified position in this list
358     * @throws IndexOutOfBoundsException {@inheritDoc}
359     */
360     public E get(int index) {
361     if (index >= size)
362     throw rangeException(index, size);
363     return (E)elementData[index];
364     }
365    
366     /**
367     * Replaces the element at the specified position in this list with
368     * the specified element.
369     *
370     * @param index index of the element to replace
371     * @param element element to be stored at the specified position
372     * @return the element previously at the specified position
373     * @throws IndexOutOfBoundsException {@inheritDoc}
374     */
375     public E set(int index, E element) {
376     if (index >= size)
377     throw rangeException(index, size);
378    
379     E oldValue = (E) elementData[index];
380     elementData[index] = element;
381     return oldValue;
382     }
383    
384     /**
385     * Appends the specified element to the end of this list.
386     *
387     * @param e element to be appended to this list
388     * @return <tt>true</tt> (as specified by {@link Collection#add})
389     */
390     public boolean add(E e) {
391     ++modCount;
392     int s = size++;
393     if (s >= elementData.length)
394     growArray(s + 1);
395     elementData[s] = e;
396     return true;
397     }
398    
399     /**
400     * Inserts the specified element at the specified position in this
401     * list. Shifts the element currently at that position (if any) and
402     * any subsequent elements to the right (adds one to their indices).
403     *
404     * @param index index at which the specified element is to be inserted
405     * @param element element to be inserted
406     * @throws IndexOutOfBoundsException {@inheritDoc}
407     */
408     public void add(int index, E element) {
409     int s = size;
410     if (index > s || index < 0)
411     throw rangeException(index, s);
412     ++modCount;
413     size = s + 1;
414     if (s >= elementData.length)
415     growArray(s + 1);
416     System.arraycopy(elementData, index, elementData, index + 1,
417     s - index);
418     elementData[index] = element;
419     }
420    
421     /**
422     * Removes the element at the specified position in this list.
423     * Shifts any subsequent elements to the left (subtracts one from their
424     * indices).
425     *
426     * @param index the index of the element to be removed
427     * @return the element that was removed from the list
428     * @throws IndexOutOfBoundsException {@inheritDoc}
429     */
430     public E remove(int index) {
431     int s = size - 1;
432     if (index > s)
433     throw rangeException(index, size);
434     size = s;
435     modCount++;
436     Object oldValue = elementData[index];
437     int numMoved = s - index;
438     if (numMoved > 0)
439 jsr166 1.4 System.arraycopy(elementData, index+1, elementData, index,
440 dl 1.1 numMoved);
441     elementData[s] = null; // forget removed element
442     return (E)oldValue;
443     }
444    
445     /**
446     * Removes the first occurrence of the specified element from this list,
447     * if it is present. If the list does not contain the element, it is
448     * unchanged. More formally, removes the element with the lowest index
449     * <tt>i</tt> such that
450     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
451     * (if such an element exists). Returns <tt>true</tt> if this list
452     * contained the specified element (or equivalently, if this list
453     * changed as a result of the call).
454     *
455     * @param o element to be removed from this list, if present
456     * @return <tt>true</tt> if this list contained the specified element
457     */
458     public boolean remove(Object o) {
459     if (o == null) {
460     for (int index = 0; index < size; index++)
461     if (elementData[index] == null) {
462     fastRemove(index);
463     return true;
464     }
465     } else {
466     for (int index = 0; index < size; index++)
467     if (o.equals(elementData[index])) {
468     fastRemove(index);
469     return true;
470     }
471     }
472     return false;
473     }
474    
475     /*
476     * Private remove method that skips bounds checking and does not
477     * return the value removed.
478     */
479     private void fastRemove(int index) {
480     modCount++;
481     int numMoved = size - index - 1;
482     if (numMoved > 0)
483     System.arraycopy(elementData, index+1, elementData, index,
484     numMoved);
485     elementData[--size] = null; // Let gc do its work
486     }
487    
488     /**
489     * Removes all of the elements from this list. The list will
490     * be empty after this call returns.
491     */
492     public void clear() {
493     modCount++;
494    
495     // Let gc do its work
496     for (int i = 0; i < size; i++)
497     elementData[i] = null;
498    
499     size = 0;
500     }
501    
502     /**
503     * Appends all of the elements in the specified collection to the end of
504     * this list, in the order that they are returned by the
505     * specified collection's Iterator. The behavior of this operation is
506     * undefined if the specified collection is modified while the operation
507     * is in progress. (This implies that the behavior of this call is
508     * undefined if the specified collection is this list, and this
509     * list is nonempty.)
510     *
511     * @param c collection containing elements to be added to this list
512     * @return <tt>true</tt> if this list changed as a result of the call
513     * @throws NullPointerException if the specified collection is null
514     */
515     public boolean addAll(Collection<? extends E> c) {
516     Object[] a = c.toArray();
517     int numNew = a.length;
518     ensureCapacity(size + numNew); // Increments modCount
519     System.arraycopy(a, 0, elementData, size, numNew);
520     size += numNew;
521     return numNew != 0;
522     }
523    
524     /**
525     * Inserts all of the elements in the specified collection into this
526     * list, starting at the specified position. Shifts the element
527     * currently at that position (if any) and any subsequent elements to
528     * the right (increases their indices). The new elements will appear
529     * in the list in the order that they are returned by the
530     * specified collection's iterator.
531     *
532     * @param index index at which to insert the first element from the
533     * specified collection
534     * @param c collection containing elements to be added to this list
535     * @return <tt>true</tt> if this list changed as a result of the call
536     * @throws IndexOutOfBoundsException {@inheritDoc}
537     * @throws NullPointerException if the specified collection is null
538     */
539     public boolean addAll(int index, Collection<? extends E> c) {
540     if (index > size || index < 0)
541     throw new IndexOutOfBoundsException(
542     "Index: " + index + ", Size: " + size);
543    
544     Object[] a = c.toArray();
545     int numNew = a.length;
546     ensureCapacity(size + numNew); // Increments modCount
547    
548     int numMoved = size - index;
549     if (numMoved > 0)
550     System.arraycopy(elementData, index, elementData, index + numNew,
551     numMoved);
552    
553     System.arraycopy(a, 0, elementData, index, numNew);
554     size += numNew;
555     return numNew != 0;
556     }
557    
558     /**
559     * Removes from this list all of the elements whose index is between
560     * <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.
561     * Shifts any succeeding elements to the left (reduces their index).
562     * This call shortens the list by <tt>(toIndex - fromIndex)</tt> elements.
563     * (If <tt>toIndex==fromIndex</tt>, this operation has no effect.)
564     *
565     * @param fromIndex index of first element to be removed
566     * @param toIndex index after last element to be removed
567     * @throws IndexOutOfBoundsException if fromIndex or toIndex out of
568     * range (fromIndex &lt; 0 || fromIndex &gt;= size() || toIndex
569     * &gt; size() || toIndex &lt; fromIndex)
570     */
571     protected void removeRange(int fromIndex, int toIndex) {
572     modCount++;
573     int numMoved = size - toIndex;
574     System.arraycopy(elementData, toIndex, elementData, fromIndex,
575     numMoved);
576    
577     // Let gc do its work
578     int newSize = size - (toIndex-fromIndex);
579     while (size != newSize)
580     elementData[--size] = null;
581     }
582    
583     /**
584     * Save the state of the <tt>ArrayList</tt> instance to a stream (that
585     * is, serialize it).
586     *
587     * @serialData The length of the array backing the <tt>ArrayList</tt>
588     * instance is emitted (int), followed by all of its elements
589     * (each an <tt>Object</tt>) in the proper order.
590     */
591     private void writeObject(java.io.ObjectOutputStream s)
592     throws java.io.IOException{
593     // Write out element count, and any hidden stuff
594     int expectedModCount = modCount;
595     s.defaultWriteObject();
596    
597     // Write out array length
598     s.writeInt(elementData.length);
599    
600     // Write out all elements in the proper order.
601     for (int i=0; i<size; i++)
602     s.writeObject(elementData[i]);
603    
604     if (modCount != expectedModCount) {
605     throw new ConcurrentModificationException();
606     }
607    
608     }
609    
610     /**
611     * Reconstitute the <tt>ArrayList</tt> instance from a stream (that is,
612     * deserialize it).
613     */
614     private void readObject(java.io.ObjectInputStream s)
615     throws java.io.IOException, ClassNotFoundException {
616     // Read in size, and any hidden stuff
617     s.defaultReadObject();
618    
619     // Read in array length and allocate array
620     int arrayLength = s.readInt();
621     Object[] a = elementData = new Object[arrayLength];
622    
623     // Read in all elements in the proper order.
624     for (int i=0; i<size; i++)
625     a[i] = s.readObject();
626     }
627    
628    
629     /**
630     * Returns a list-iterator of the elements in this list (in proper
631     * sequence), starting at the specified position in the list.
632     * Obeys the general contract of <tt>List.listIterator(int)</tt>.<p>
633     *
634     * The list-iterator is <i>fail-fast</i>: if the list is structurally
635     * modified at any time after the Iterator is created, in any way except
636     * through the list-iterator's own <tt>remove</tt> or <tt>add</tt>
637     * methods, the list-iterator will throw a
638     * <tt>ConcurrentModificationException</tt>. Thus, in the face of
639     * concurrent modification, the iterator fails quickly and cleanly, rather
640     * than risking arbitrary, non-deterministic behavior at an undetermined
641     * time in the future.
642     *
643     * @param index index of the first element to be returned from the
644     * list-iterator (by a call to <tt>next</tt>)
645     * @return a ListIterator of the elements in this list (in proper
646     * sequence), starting at the specified position in the list
647     * @throws IndexOutOfBoundsException {@inheritDoc}
648     * @see List#listIterator(int)
649     */
650     public ListIterator<E> listIterator(int index) {
651     if (index < 0 || index > size)
652     throw new IndexOutOfBoundsException("Index: "+index);
653     return new ArrayListIterator(index);
654     }
655 jsr166 1.4
656 dl 1.1 /**
657     * Returns an iterator over the elements in this list in proper sequence.
658     *
659     * @return an iterator over the elements in this list in proper sequence
660     */
661     public Iterator<E> iterator() {
662     return new ArrayListIterator(0);
663     }
664    
665     /**
666 jsr166 1.4 * A streamlined version of AbstractList.Itr
667 dl 1.1 */
668     final class ArrayListIterator implements ListIterator<E> {
669     int cursor; // index of next element to return;
670     int lastRet; // index of last element, or -1 if no such
671     int expectedModCount; // to check for CME
672    
673     ArrayListIterator(int index) {
674     cursor = index;
675     lastRet = -1;
676     expectedModCount = modCount;
677     }
678    
679     public boolean hasNext() {
680     return cursor < size;
681     }
682    
683     public boolean hasPrevious() {
684     return cursor > 0;
685     }
686    
687     public int nextIndex() {
688     return cursor;
689     }
690    
691     public int previousIndex() {
692     return cursor - 1;
693     }
694    
695     public E next() {
696     if (expectedModCount == modCount) {
697     int i = cursor;
698     if (i < size) {
699     try {
700     E e = (E)elementData[i];
701     lastRet = i;
702     cursor = i + 1;
703     return e;
704 jsr166 1.4 } catch (IndexOutOfBoundsException fallthrough) {
705 dl 1.1 }
706     }
707     }
708     // Prefer reporting CME if applicable on failures
709     if (expectedModCount == modCount)
710     throw new NoSuchElementException();
711     throw new ConcurrentModificationException();
712     }
713    
714     public E previous() {
715     if (expectedModCount == modCount) {
716     int i = cursor - 1;
717     if (i < size) {
718     try {
719     E e = (E)elementData[i];
720     lastRet = i;
721     cursor = i;
722     return e;
723 jsr166 1.4 } catch (IndexOutOfBoundsException fallthrough) {
724 dl 1.1 }
725     }
726     }
727     if (expectedModCount == modCount)
728     throw new NoSuchElementException();
729     throw new ConcurrentModificationException();
730     }
731    
732     public void remove() {
733     if (lastRet < 0)
734     throw new IllegalStateException();
735 jsr166 1.4 if (modCount != expectedModCount)
736 dl 1.1 throw new ConcurrentModificationException();
737     ArrayList.this.remove(lastRet);
738     if (lastRet < cursor)
739     cursor--;
740     lastRet = -1;
741     expectedModCount = modCount;
742     }
743    
744     public void set(E e) {
745     if (lastRet < 0)
746     throw new IllegalStateException();
747 jsr166 1.4 if (modCount != expectedModCount)
748 dl 1.1 throw new ConcurrentModificationException();
749     ArrayList.this.set(lastRet, e);
750     expectedModCount = modCount;
751     }
752    
753     public void add(E e) {
754 jsr166 1.4 if (modCount != expectedModCount)
755 dl 1.1 throw new ConcurrentModificationException();
756     ArrayList.this.add(cursor++, e);
757     lastRet = -1;
758     expectedModCount = modCount;
759     }
760     }
761    
762     }