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.8 by dl, Wed Apr 19 15:08:04 2006 UTC vs.
Revision 1.9 by dl, Thu Apr 20 20:34:50 2006 UTC

# Line 28 | Line 28 | public interface ConcurrentNavigableMap<
28       * @throws NullPointerException     {@inheritDoc}
29       * @throws IllegalArgumentException {@inheritDoc}
30       */
31 <    ConcurrentNavigableMap<K,V> navigableSubMap(K fromKey, boolean fromInclusive,
32 <                                                K toKey,   boolean toInclusive);
31 >    ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
32 >                                       K toKey,   boolean toInclusive);
33  
34      /**
35       * @throws ClassCastException       {@inheritDoc}
36       * @throws NullPointerException     {@inheritDoc}
37       * @throws IllegalArgumentException {@inheritDoc}
38       */
39 <    ConcurrentNavigableMap<K,V> navigableHeadMap(K toKey, boolean inclusive);
39 >    ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
40  
41  
42      /**
# Line 44 | Line 44 | public interface ConcurrentNavigableMap<
44       * @throws NullPointerException     {@inheritDoc}
45       * @throws IllegalArgumentException {@inheritDoc}
46       */
47 <    ConcurrentNavigableMap<K,V> navigableTailMap(K fromKey, boolean inclusive);
47 >    ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive);
48  
49      /**
50       * @throws ClassCastException       {@inheritDoc}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines