ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166x/NavigableMap.java
(Generate patch)

Comparing jsr166/src/jsr166x/NavigableMap.java (file contents):
Revision 1.5 by jsr166, Mon Nov 16 04:16:42 2009 UTC vs.
Revision 1.8 by jsr166, Mon Dec 5 04:48:16 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   package jsr166x;
# Line 242 | Line 242 | public interface NavigableMap<K,V> exten
242       * <tt>fromKey</tt> and <tt>toKey</tt> are equal, the returned sorted map
243       * is empty.)  The returned sorted map is backed by this map, so changes
244       * in the returned sorted map are reflected in this map, and vice-versa.
245 <
245 >     *
246       * @param fromKey low endpoint (inclusive) of the subMap.
247       * @param toKey high endpoint (exclusive) of the subMap.
248       *
# Line 292 | Line 292 | public interface NavigableMap<K,V> exten
292       * @throws NullPointerException if <tt>fromKey</tt> is <tt>null</tt>
293       * and this map does not support <tt>null</tt> keys.
294       */
295 <    public NavigableMap<K,V>  tailMap(K fromKey);
295 >    public NavigableMap<K,V> tailMap(K fromKey);
296   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines