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

Comparing jsr166/src/main/java/util/Queue.java (file contents):
Revision 1.41 by jsr166, Tue Nov 12 23:23:05 2013 UTC vs.
Revision 1.44 by jsr166, Fri Jul 8 20:02:54 2016 UTC

# Line 95 | Line 95 | package java.util;
95   * always well-defined for queues with the same elements but different
96   * ordering properties.
97   *
98 *
98   * <p>This interface is a member of the
99   * <a href="{@docRoot}/../technotes/guides/collections/index.html">
100   * Java Collections Framework</a>.
101   *
103 * @see java.util.Collection
104 * @see LinkedList
105 * @see PriorityQueue
106 * @see java.util.concurrent.LinkedBlockingQueue
107 * @see java.util.concurrent.BlockingQueue
108 * @see java.util.concurrent.ArrayBlockingQueue
109 * @see java.util.concurrent.LinkedBlockingQueue
110 * @see java.util.concurrent.PriorityBlockingQueue
102   * @since 1.5
103   * @author Doug Lea
104 < * @param <E> the type of elements held in this collection
104 > * @param <E> the type of elements held in this queue
105   */
106   public interface Queue<E> extends Collection<E> {
107      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines