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

Comparing jsr166/src/main/java/util/concurrent/BlockingDeque.java (file contents):
Revision 1.10 by jsr166, Tue May 17 04:17:31 2005 UTC vs.
Revision 1.11 by jsr166, Tue May 17 16:10:15 2005 UTC

# Line 446 | Line 446 | public interface BlockingDeque<E> extend
446       * {@link #offerLast(Object,long,TimeUnit) #offerLast}.
447       *
448       * @param e the element to add
449 <     * @return <tt>true</tt> if it was possible to add the element to
450 <     *         this deque, else <tt>false</tt>
449 >     * @return <tt>true</tt> if the element was added to this deque, else
450 >     *         <tt>false</tt>
451       * @throws InterruptedException {@inheritDoc}
452       * @throws ClassCastException if the class of the specified element
453       *         prevents it from being added to this deque
# Line 573 | Line 573 | public interface BlockingDeque<E> extend
573      public int size();
574  
575      /**
576 <     * Returns an iterator over the elements in this deque.  The elements
577 <     * will be ordered from first (head) to last (tail).
576 >     * Returns an iterator over the elements in this deque in proper sequence.
577 >     * The elements will be returned in order from first (head) to last (tail).
578       *
579 <     * @return an <tt>Iterator</tt> over the elements in this deque
579 >     * @return an iterator over the elements in this deque in proper sequence
580       */
581      Iterator<E> iterator();
582  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines