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.40 by dl, Sat Jul 20 18:00:11 2013 UTC vs.
Revision 1.43 by jsr166, Tue Dec 1 06:59:28 2015 UTC

# Line 18 | Line 18 | package java.util;
18   * implementations; in most implementations, insert operations cannot
19   * fail.
20   *
21 * <p>
21   * <table BORDER CELLPADDING=3 CELLSPACING=1>
22   * <caption>Summary of Queue methods</caption>
23   *  <tr>
# Line 101 | Line 100 | package java.util;
100   * <a href="{@docRoot}/../technotes/guides/collections/index.html">
101   * Java Collections Framework</a>.
102   *
104 * @see java.util.Collection
105 * @see LinkedList
106 * @see PriorityQueue
107 * @see java.util.concurrent.LinkedBlockingQueue
108 * @see java.util.concurrent.BlockingQueue
109 * @see java.util.concurrent.ArrayBlockingQueue
110 * @see java.util.concurrent.LinkedBlockingQueue
111 * @see java.util.concurrent.PriorityBlockingQueue
103   * @since 1.5
104   * @author Doug Lea
105 < * @param <E> the type of elements held in this collection
105 > * @param <E> the type of elements held in this queue
106   */
107   public interface Queue<E> extends Collection<E> {
108      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines