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.12 by jsr166, Wed Jul 20 02:18:52 2005 UTC vs.
Revision 1.13 by jsr166, Thu Aug 11 08:54:39 2005 UTC

# Line 102 | Line 102 | public interface NavigableSet<E> extends
102      E higher(E e);
103  
104      /**
105 <     * Retrieves and removes the first (lowest) element.
105 >     * Retrieves and removes the first (lowest) element,
106 >     * or returns <tt>null</tt> if this set is empty.
107       *
108       * @return the first element, or <tt>null</tt> if this set is empty
109       */
110      E pollFirst();
111  
112      /**
113 <     * Retrieves and removes the last (highest) element.
113 >     * Retrieves and removes the last (highest) element,
114 >     * or returns <tt>null</tt> if this set is empty.
115       *
116       * @return the last element, or <tt>null</tt> if this set is empty
117       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines