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.22 by dl, Wed Apr 20 16:25:54 2011 UTC vs.
Revision 1.23 by dl, Wed Apr 20 19:08:20 2011 UTC

# Line 372 | Line 372 | public interface BlockingDeque<E> extend
372       * @return <tt>true</tt> if an element was removed as a result of this call
373       * @throws ClassCastException if the class of the specified element
374       *         is incompatible with this deque
375 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
375 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
376       * @throws NullPointerException if the specified element is null
377 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
377 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
378       */
379      boolean removeFirstOccurrence(Object o);
380  
# Line 390 | Line 390 | public interface BlockingDeque<E> extend
390       * @return <tt>true</tt> if an element was removed as a result of this call
391       * @throws ClassCastException if the class of the specified element
392       *         is incompatible with this deque
393 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
393 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
394       * @throws NullPointerException if the specified element is null
395 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
395 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
396       */
397      boolean removeLastOccurrence(Object o);
398  
# Line 567 | Line 567 | public interface BlockingDeque<E> extend
567       * @return <tt>true</tt> if this deque changed as a result of the call
568       * @throws ClassCastException if the class of the specified element
569       *         is incompatible with this deque
570 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
570 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
571       * @throws NullPointerException if the specified element is null
572 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
572 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
573       */
574      boolean remove(Object o);
575  
# Line 582 | Line 582 | public interface BlockingDeque<E> extend
582       * @return <tt>true</tt> if this deque contains the specified element
583       * @throws ClassCastException if the class of the specified element
584       *         is incompatible with this deque
585 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
585 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
586       * @throws NullPointerException if the specified element is null
587 <     *         (<a href="Collection.html#optional-restrictions">optional</a>)
587 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
588       */
589      public boolean contains(Object o);
590  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines