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

Comparing jsr166/src/main/java/util/concurrent/DelayQueue.java (file contents):
Revision 1.28 by dl, Wed Jun 2 23:49:07 2004 UTC vs.
Revision 1.29 by jsr166, Tue Apr 26 01:17:18 2005 UTC

# Line 22 | Line 22 | import java.util.*;
22   *
23   * <p>This class and its iterator implement all of the
24   * <em>optional</em> methods of the {@link Collection} and {@link
25 < * Iterator} interfaces.
25 > * Iterator} interfaces.
26   *
27   * <p>This class is a member of the
28   * <a href="{@docRoot}/../guide/collections/index.html">
# Line 51 | Line 51 | public class DelayQueue<E extends Delaye
51       *
52       * @param c the collection
53       * @throws NullPointerException if <tt>c</tt> or any element within it
54 <     * is <tt>null</tt>
54 >     *         is <tt>null</tt>.
55       *
56       */
57      public DelayQueue(Collection<? extends E> c) {
# Line 361 | Line 361 | public class DelayQueue<E extends Delaye
361       * Returns an iterator over the elements in this queue. The iterator
362       * does not return the elements in any particular order. The
363       * returned iterator is a thread-safe "fast-fail" iterator that will
364 <     * throw {@link java.util.ConcurrentModificationException}
364 >     * throw {@link ConcurrentModificationException}
365       * upon detected interference.
366       *
367       * @return an iterator over the elements in this queue.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines