ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/LinkedList.java
(Generate patch)

Comparing jsr166/src/main/java/util/LinkedList.java (file contents):
Revision 1.40 by dl, Wed Sep 14 23:49:59 2005 UTC vs.
Revision 1.44 by jsr166, Tue Feb 7 20:54:24 2006 UTC

# Line 1 | Line 1
1   /*
2   * %W% %E%
3   *
4 < * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
4 > * Copyright 2006 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)
9  
10   /**
11   * Linked list implementation of the <tt>List</tt> interface.  Implements all
# Line 799 | Line 798 | public class LinkedList<E>
798      }
799  
800      /**
801 <     * Returns an iterator over the elements in this list in reverse
803 <     * sequential order.  The elements will be returned in order from
804 <     * last (tail) to first (head).
805 <     *
806 <     * @return an iterator over the elements in this list in reverse
807 <     * sequence
801 >     * @since 1.6
802       */
803      public Iterator<E> descendingIterator() {
804          return new DescendingIterator();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines