--- jsr166/src/main/java/util/Queue.java 2005/05/14 02:11:52 1.29 +++ jsr166/src/main/java/util/Queue.java 2006/05/28 23:36:29 1.35 @@ -23,7 +23,7 @@ package java.util; * * * Throws exception - * Special value + * Returns special value * * * Insert @@ -97,7 +97,7 @@ package java.util; * * *

This interface is a member of the - * + * * Java Collections Framework. * * @see java.util.Collection @@ -120,13 +120,13 @@ public interface Queue extends Collec * if no space is currently available. * * @param e the element to add - * @return true (as per the spec for {@link Collection#add}) + * @return true (as specified by {@link Collection#add}) * @throws IllegalStateException if the element cannot be added at this * time due to capacity restrictions - * @throws NullPointerException if the specified element is null and - * this queue not permit null elements * @throws ClassCastException if the class of the specified element * prevents it from being added to this queue + * @throws NullPointerException if the specified element is null and + * this queue does not permit null elements * @throws IllegalArgumentException if some property of this element * prevents it from being added to this queue */ @@ -135,17 +135,17 @@ public interface Queue extends Collec /** * Inserts the specified element into this queue if it is possible to do * so immediately without violating capacity restrictions. - * When using a capacity-restricted deque, this method is generally + * When using a capacity-restricted queue, this method is generally * preferable to {@link #add}, which can fail to insert an element only * by throwing an exception. * * @param e the element to add * @return true if the element was added to this queue, else * false - * @throws NullPointerException if the specified element is null and - * this queue does not permit null elements * @throws ClassCastException if the class of the specified element * prevents it from being added to this queue + * @throws NullPointerException if the specified element is null and + * this queue does not permit null elements * @throws IllegalArgumentException if some property of this element * prevents it from being added to this queue */ @@ -153,8 +153,8 @@ public interface Queue extends Collec /** * Retrieves and removes the head of this queue. This method differs - * from {@link #poll} only in that it throws an exception if this queue - * is empty. + * from {@link #poll poll} only in that it throws an exception if this + * queue is empty. * * @return the head of this queue * @throws NoSuchElementException if this queue is empty @@ -171,8 +171,8 @@ public interface Queue extends Collec /** * Retrieves, but does not remove, the head of this queue. This method - * differs from {@link #peek} only in that it throws an exception if - * this queue is empty. + * differs from {@link #peek peek} only in that it throws an exception + * if this queue is empty. * * @return the head of this queue * @throws NoSuchElementException if this queue is empty