--- jsr166/src/main/java/util/Queue.java 2013/01/16 01:59:47 1.38 +++ jsr166/src/main/java/util/Queue.java 2014/12/02 05:48:28 1.42 @@ -18,8 +18,8 @@ package java.util; * implementations; in most implementations, insert operations cannot * fail. * - *

* + * * * * @@ -27,18 +27,18 @@ package java.util; * * * - * - * + * + * * * * - * - * + * + * * * * - * - * + * + * * *
Summary of Queue methods
Throws exception
Insert{@link #add add(e)}{@link #offer offer(e)}{@link Queue#add add(e)}{@link Queue#offer offer(e)}
Remove{@link #remove remove()}{@link #poll poll()}{@link Queue#remove remove()}{@link Queue#poll poll()}
Examine{@link #element element()}{@link #peek peek()}{@link Queue#element element()}{@link Queue#peek peek()}
* @@ -110,7 +110,7 @@ package java.util; * @see java.util.concurrent.PriorityBlockingQueue * @since 1.5 * @author Doug Lea - * @param the type of elements held in this collection + * @param the type of elements held in this queue */ public interface Queue extends Collection { /**