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

Comparing jsr166/src/main/java/util/PriorityQueue.java (file contents):
Revision 1.41 by dl, Sat Sep 13 18:51:06 2003 UTC vs.
Revision 1.44 by dl, Sat Oct 18 12:29:27 2003 UTC

# Line 14 | Line 14 | package java.util;
14   * <i>natural order</i> (see {@link Comparable}), or according to a
15   * {@link java.util.Comparator}, depending on which constructor is
16   * used. A priority queue does not permit <tt>null</tt> elements.
17 + * A priority queue relying on natural ordering also does not
18 + * permit insertion of non-comparable objects (doing so may result
19 + * in <tt>ClassCastException</tt>).
20   *
21   * <p>The <em>head</em> of this queue is the <em>least</em> element
22   * with respect to the specified ordering.  If multiple elements are
23   * tied for least value, the head is one of those elements -- ties are
24 < * broken arbitrarily.  The {@link #remove()} and {@link #poll()}
25 < * methods remove and return the head of the queue, and the {@link
26 < * #element()} and {@link #peek()} methods return, but do not delete,
24 < * the head of the queue.
24 > * broken arbitrarily.  The queue retrieval operations <tt>poll</tt>,
25 > * <tt>remove</tt>, <tt>peek</tt>, and <tt>element</tt> access the
26 > * element at the head of the queue.
27   *
28   * <p>A priority queue is unbounded, but has an internal
29   * <i>capacity</i> governing the size of an array used to store the
# Line 57 | Line 59 | package java.util;
59   * @since 1.5
60   * @version %I%, %G%
61   * @author Josh Bloch
62 + * @param <E> the base class of all elements held in this collection
63   */
64   public class PriorityQueue<E> extends AbstractQueue<E>
65      implements Queue<E>, java.io.Serializable {
# Line 278 | Line 281 | public class PriorityQueue<E> extends Ab
281              
282  
283      /**
284 <     * Inserts the specified element to this priority queue.
284 >     * Inserts the specified element into this priority queue.
285       *
286       * @return <tt>true</tt>
287       * @throws ClassCastException if the specified element cannot be compared
# Line 323 | Line 326 | public class PriorityQueue<E> extends Ab
326          return offer(o);
327      }
328  
326  
327    /**
328     * Adds all of the elements in the specified collection to this queue.
329     * The behavior of this operation is undefined if
330     * the specified collection is modified while the operation is in
331     * progress.  (This implies that the behavior of this call is undefined if
332     * the specified collection is this queue, and this queue is nonempty.)
333     * <p>
334     * This implementation iterates over the specified collection, and adds
335     * each object returned by the iterator to this collection, in turn.
336     * @param c collection whose elements are to be added to this queue
337     * @return <tt>true</tt> if this queue changed as a result of the
338     *         call.
339     * @throws NullPointerException if <tt>c</tt> or any element in <tt>c</tt>
340     * is <tt>null</tt>
341     * @throws ClassCastException if any element cannot be compared
342     * with elements currently in the priority queue according
343     * to the priority queue's ordering.
344     */
345    public boolean addAll(Collection<? extends E> c) {
346        return super.addAll(c);
347    }
348
329      public boolean remove(Object o) {
330          if (o == null)
331              return false;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines