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.41 by jsr166, Fri Sep 16 04:24:44 2005 UTC

# Line 798 | Line 798 | public class LinkedList<E>
798          return result;
799      }
800  
801    /**
802     * 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
808     */
801      public Iterator<E> descendingIterator() {
802          return new DescendingIterator();
803      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines