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

Comparing jsr166/src/main/java/util/NavigableSet.java (file contents):
Revision 1.1 by dl, Tue Dec 28 12:14:07 2004 UTC vs.
Revision 1.2 by dl, Tue Mar 8 12:27:06 2005 UTC

# Line 44 | Line 44 | public interface NavigableSet<E> extends
44       * @throws ClassCastException if o cannot be compared with the elements
45       *            currently in the set.
46       * @throws NullPointerException if o is <tt>null</tt>
47 <     * and this set deas not permit <tt>null</tt> elements
47 >     * and this set does not permit <tt>null</tt> elements
48       */
49      public E ceiling(E o);
50  
# Line 58 | Line 58 | public interface NavigableSet<E> extends
58       * @throws ClassCastException if o cannot be compared with the elements
59       *            currently in the set.
60       * @throws NullPointerException if o is <tt>null</tt>
61 <     * and this set deas not permit <tt>null</tt> elements
61 >     * and this set does not permit <tt>null</tt> elements
62       */
63      public E lower(E o);
64  
# Line 72 | Line 72 | public interface NavigableSet<E> extends
72       * @throws ClassCastException if o cannot be compared with the elements
73       *            currently in the set.
74       * @throws NullPointerException if o is <tt>null</tt>.
75 <     * and this set deas not permit <tt>null</tt> elements
75 >     * and this set does not permit <tt>null</tt> elements
76       */
77      public E floor(E o);
78  
# Line 86 | Line 86 | public interface NavigableSet<E> extends
86       * @throws ClassCastException if o cannot be compared with the elements
87       *            currently in the set.
88       * @throws NullPointerException if o is <tt>null</tt>
89 <     * and this set deas not permit <tt>null</tt> elements
89 >     * and this set does not permit <tt>null</tt> elements
90       */
91      public E higher(E o);
92  
# Line 132 | Line 132 | public interface NavigableSet<E> extends
132       * greater than <tt>toElement</tt>.
133       * @throws NullPointerException if <tt>fromElement</tt> or
134       *         <tt>toElement</tt> is <tt>null</tt>
135 <     * and this set deas not permit <tt>null</tt> elements
135 >     * and this set does not permit <tt>null</tt> elements
136       */
137      public NavigableSet<E> subSet(E fromElement, E toElement);
138  
# Line 148 | Line 148 | public interface NavigableSet<E> extends
148       *         with this set's comparator (or, if the set has no comparator,
149       *         if <tt>toElement</tt> does not implement <tt>Comparable</tt>).
150       * @throws NullPointerException if <tt>toElement</tt> is <tt>null</tt>
151 <     * and this set deas not permit <tt>null</tt> elements
151 >     * and this set does not permit <tt>null</tt> elements
152       */
153      public NavigableSet<E> headSet(E toElement);
154  
# Line 165 | Line 165 | public interface NavigableSet<E> extends
165       * comparator, if <tt>fromElement</tt> does not implement
166       * <tt>Comparable</tt>).
167       * @throws NullPointerException if <tt>fromElement</tt> is <tt>null</tt>
168 <     * and this set deas not permit <tt>null</tt> elements
168 >     * and this set does not permit <tt>null</tt> elements
169       */
170      public NavigableSet<E> tailSet(E fromElement);
171   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines