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.12 by tim, Fri Aug 1 19:34:05 2003 UTC vs.
Revision 1.13 by dholmes, Mon Aug 4 01:54:13 2003 UTC

# Line 20 | Line 20 | package java.util;
20   * which would be removed by a call to {@link #remove() } or {@link #poll()}.
21   * Every <tt>Queue</tt> implementation must specify its ordering guarantees.
22   *
23 < * <p>The {@link #offer offer(E)} method adds an element if possible, otherwise
24 < * returning <tt>false</tt>.  This differs from the {@link java.util.Collection#add Collection.add(E)}
23 > * <p>The {@link #offer offer} method adds an element if possible, otherwise
24 > * returning <tt>false</tt>.  This differs from the
25 > * {@link java.util.Collection#add Collection.add}
26   * method, which throws an unchecked exception upon
27   * failure. It is designed for use in collections in which failure to
28   * add is a normal, rather than exceptional occurrence, for example,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines