--- jsr166/src/jsr166x/ConcurrentNavigableMap.java 2011/12/05 04:48:16 1.5 +++ jsr166/src/jsr166x/ConcurrentNavigableMap.java 2012/12/29 23:55:19 1.6 @@ -24,21 +24,21 @@ public interface ConcurrentNavigableMap< * is empty.) The returned sorted map is backed by this map, so changes * in the returned sorted map are reflected in this map, and vice-versa. * - * @param fromKey low endpoint (inclusive) of the subMap. - * @param toKey high endpoint (exclusive) of the subMap. + * @param fromKey low endpoint (inclusive) of the subMap + * @param toKey high endpoint (exclusive) of the subMap * * @return a view of the portion of this map whose keys range from - * fromKey, inclusive, to toKey, exclusive. + * fromKey, inclusive, to toKey, exclusive * * @throws ClassCastException if fromKey and * toKey cannot be compared to one another using this * map's comparator (or, if the map has no comparator, using - * natural ordering). + * natural ordering) * @throws IllegalArgumentException if fromKey is greater - * than toKey. + * than toKey * @throws NullPointerException if fromKey or * toKey is null and this map does not support - * null keys. + * null keys */ public ConcurrentNavigableMap subMap(K fromKey, K toKey); @@ -47,15 +47,15 @@ public interface ConcurrentNavigableMap< * than toKey. The returned sorted map is backed by this map, so * changes in the returned sorted map are reflected in this map, and * vice-versa. - * @param toKey high endpoint (exclusive) of the headMap. + * @param toKey high endpoint (exclusive) of the headMap * @return a view of the portion of this map whose keys are strictly - * less than toKey. + * less than toKey * * @throws ClassCastException if toKey is not compatible * with this map's comparator (or, if the map has no comparator, - * if toKey does not implement Comparable). + * if toKey does not implement Comparable) * @throws NullPointerException if toKey is null - * and this map does not support null keys. + * and this map does not support null keys */ public ConcurrentNavigableMap headMap(K toKey); @@ -64,14 +64,14 @@ public interface ConcurrentNavigableMap< * greater than or equal to fromKey. The returned sorted * map is backed by this map, so changes in the returned sorted * map are reflected in this map, and vice-versa. - * @param fromKey low endpoint (inclusive) of the tailMap. + * @param fromKey low endpoint (inclusive) of the tailMap * @return a view of the portion of this map whose keys are greater - * than or equal to fromKey. + * than or equal to fromKey * @throws ClassCastException if fromKey is not compatible * with this map's comparator (or, if the map has no comparator, - * if fromKey does not implement Comparable). + * if fromKey does not implement Comparable) * @throws NullPointerException if fromKey is null - * and this map does not support null keys. + * and this map does not support null keys */ public ConcurrentNavigableMap tailMap(K fromKey); }