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

Comparing jsr166/src/main/java/util/Collections.java (file contents):
Revision 1.23 by jsr166, Sun Mar 19 01:02:59 2006 UTC vs.
Revision 1.24 by jsr166, Thu Apr 20 07:24:42 2006 UTC

# Line 3605 | Line 3605 | public class Collections {
3605       * view can be useful when you would like to use a method
3606       * requiring a <tt>Queue</tt> but you need Lifo ordering.
3607       *
3608 +     * <p>Each method invocation on the queue returned by this method
3609 +     * results in exactly one method invocation on the backing deque, with
3610 +     * one exception.  The {@link Queue#addAll addAll} method is
3611 +     * implemented as a sequence of {@link Deque#addFirst addFirst}
3612 +     * invocations on the backing deque.
3613 +     *
3614       * @param deque the deque
3615       * @return the queue
3616       * @since  1.6

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines