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

Comparing jsr166/src/main/java/util/concurrent/LinkedBlockingDeque.java (file contents):
Revision 1.50 by jsr166, Thu Aug 8 15:13:34 2013 UTC vs.
Revision 1.51 by jsr166, Thu Aug 8 20:12:10 2013 UTC

# Line 981 | Line 981 | public class LinkedBlockingDeque<E>
981       * Returns an iterator over the elements in this deque in proper sequence.
982       * The elements will be returned in order from first (head) to last (tail).
983       *
984 <     * <p>The returned iterator is a "weakly consistent" iterator that
985 <     * will never throw {@link java.util.ConcurrentModificationException
986 <     * ConcurrentModificationException}, and guarantees to traverse
987 <     * elements as they existed upon construction of the iterator, and
988 <     * may (but is not guaranteed to) reflect any modifications
989 <     * subsequent to construction.
984 >     * <p>The returned iterator is
985 >     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
986       *
987       * @return an iterator over the elements in this deque in proper sequence
988       */
# Line 999 | Line 995 | public class LinkedBlockingDeque<E>
995       * sequential order.  The elements will be returned in order from
996       * last (tail) to first (head).
997       *
998 <     * <p>The returned iterator is a "weakly consistent" iterator that
999 <     * will never throw {@link java.util.ConcurrentModificationException
1004 <     * ConcurrentModificationException}, and guarantees to traverse
1005 <     * elements as they existed upon construction of the iterator, and
1006 <     * may (but is not guaranteed to) reflect any modifications
1007 <     * subsequent to construction.
998 >     * <p>The returned iterator is
999 >     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1000       *
1001       * @return an iterator over the elements in this deque in reverse order
1002       */
# Line 1246 | Line 1238 | public class LinkedBlockingDeque<E>
1238      /**
1239       * Returns a {@link Spliterator} over the elements in this deque.
1240       *
1241 +     * <p>The returned spliterator is
1242 +     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1243 +     *
1244       * <p>The {@code Spliterator} reports {@link Spliterator#CONCURRENT},
1245       * {@link Spliterator#ORDERED}, and {@link Spliterator#NONNULL}.
1246       *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines