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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentNavigableMap.java (file contents):
Revision 1.3 by jsr166, Mon May 2 18:24:38 2005 UTC vs.
Revision 1.4 by jsr166, Mon May 16 08:56:05 2005 UTC

# Line 24 | Line 24 | public interface ConcurrentNavigableMap<
24   {
25      /**
26       * @throws ClassCastException       {@inheritDoc}
27     * @throws IllegalArgumentException {@inheritDoc}
27       * @throws NullPointerException     {@inheritDoc}
28 +     * @throws IllegalArgumentException {@inheritDoc}
29       */
30      ConcurrentNavigableMap<K,V> navigableSubMap(K fromKey, K toKey);
31  
32      /**
33       * @throws ClassCastException       {@inheritDoc}
34     * @throws IllegalArgumentException {@inheritDoc}
34       * @throws NullPointerException     {@inheritDoc}
35 +     * @throws IllegalArgumentException {@inheritDoc}
36       */
37      ConcurrentNavigableMap<K,V> navigableHeadMap(K toKey);
38  
39      /**
40       * @throws ClassCastException       {@inheritDoc}
41     * @throws IllegalArgumentException {@inheritDoc}
41       * @throws NullPointerException     {@inheritDoc}
42 +     * @throws IllegalArgumentException {@inheritDoc}
43       */
44      ConcurrentNavigableMap<K,V> navigableTailMap(K fromKey);
45   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines