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.17 by jsr166, Thu Apr 20 21:55:42 2006 UTC vs.
Revision 1.20 by jsr166, Fri Apr 21 04:45:37 2006 UTC

# Line 8 | Line 8 | package java.util;
8  
9   /**
10   * A {@link SortedSet} extended with navigation methods reporting
11 < * closest matches for given search targets. Methods <tt>lower},
11 > * closest matches for given search targets. Methods {@code lower},
12   * {@code floor}, {@code ceiling}, and {@code higher} return elements
13   * respectively less than, less than or equal, greater than or equal,
14   * and greater than a given element, returning {@code null} if there
# Line 129 | Line 129 | public interface NavigableSet<E> extends
129       * set in descending order.  The descending set is backed by this set, so
130       * changes to the set are reflected in the descending set, and vice-versa.
131       * If either set is modified while an iteration over the other set is in
132 <     * in progress (except through the iterator's own {@code remove} operation),
132 >     * progress (except through the iterator's own {@code remove} operation),
133       * the results of the iteration are undefined.
134       *
135 <     * @return a navigable set view of the mappings contained in this set,
136 <     *     sorted in descending order
135 >     * @return a navigable set view of the elements contained in this set,
136 >     *         sorted in descending order
137       */
138      NavigableSet<E> descendingSet();
139  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines