--- jsr166/src/main/java/util/NavigableSet.java 2004/12/28 12:14:07 1.1 +++ jsr166/src/main/java/util/NavigableSet.java 2005/03/08 12:27:06 1.2 @@ -44,7 +44,7 @@ public interface NavigableSet extends * @throws ClassCastException if o cannot be compared with the elements * currently in the set. * @throws NullPointerException if o is null - * and this set deas not permit null elements + * and this set does not permit null elements */ public E ceiling(E o); @@ -58,7 +58,7 @@ public interface NavigableSet extends * @throws ClassCastException if o cannot be compared with the elements * currently in the set. * @throws NullPointerException if o is null - * and this set deas not permit null elements + * and this set does not permit null elements */ public E lower(E o); @@ -72,7 +72,7 @@ public interface NavigableSet extends * @throws ClassCastException if o cannot be compared with the elements * currently in the set. * @throws NullPointerException if o is null. - * and this set deas not permit null elements + * and this set does not permit null elements */ public E floor(E o); @@ -86,7 +86,7 @@ public interface NavigableSet extends * @throws ClassCastException if o cannot be compared with the elements * currently in the set. * @throws NullPointerException if o is null - * and this set deas not permit null elements + * and this set does not permit null elements */ public E higher(E o); @@ -132,7 +132,7 @@ public interface NavigableSet extends * greater than toElement. * @throws NullPointerException if fromElement or * toElement is null - * and this set deas not permit null elements + * and this set does not permit null elements */ public NavigableSet subSet(E fromElement, E toElement); @@ -148,7 +148,7 @@ public interface NavigableSet extends * with this set's comparator (or, if the set has no comparator, * if toElement does not implement Comparable). * @throws NullPointerException if toElement is null - * and this set deas not permit null elements + * and this set does not permit null elements */ public NavigableSet headSet(E toElement); @@ -165,7 +165,7 @@ public interface NavigableSet extends * comparator, if fromElement does not implement * Comparable). * @throws NullPointerException if fromElement is null - * and this set deas not permit null elements + * and this set does not permit null elements */ public NavigableSet tailSet(E fromElement); }