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.1 by dl, Tue Dec 28 12:14:13 2004 UTC vs.
Revision 1.2 by dl, Tue Mar 22 01:30:18 2005 UTC

# Line 38 | Line 38 | public interface ConcurrentNavigableMap<
38       * <tt>toKey</tt> is <tt>null</tt> and this map does not support
39       * <tt>null</tt> keys.
40       */
41 <    public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
41 >    public ConcurrentNavigableMap<K,V> navigableSubMap(K fromKey, K toKey);
42  
43      /**
44       * Returns a view of the portion of this map whose keys are strictly less
# Line 55 | Line 55 | public interface ConcurrentNavigableMap<
55       * @throws NullPointerException if <tt>toKey</tt> is <tt>null</tt>
56       * and this map does not support <tt>null</tt> keys.
57       */
58 <    public ConcurrentNavigableMap<K,V> headMap(K toKey);
58 >    public ConcurrentNavigableMap<K,V> navigableHeadMap(K toKey);
59  
60      /**
61       * Returns a view of the portion of this map whose keys are
# Line 71 | Line 71 | public interface ConcurrentNavigableMap<
71       * @throws NullPointerException if <tt>fromKey</tt> is <tt>null</tt>
72       * and this map does not support <tt>null</tt> keys.
73       */
74 <    public ConcurrentNavigableMap<K,V>  tailMap(K fromKey);
74 >    public ConcurrentNavigableMap<K,V>  navigableTailMap(K fromKey);
75   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines