scolebourne 2004/09/22 16:16:48
Modified: collections/src/java/org/apache/commons/collections
OrderedIterator.java
Log:
Javadoc tweaks, bug 30191
Revision Changes Path
1.5 +5 -5
jakarta-commons/collections/src/java/org/apache/commons/collections/OrderedIterator.java
Index: OrderedIterator.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/OrderedIterator.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- OrderedIterator.java 18 Feb 2004 01:15:42 -0000 1.4
+++ OrderedIterator.java 22 Sep 2004 23:16:48 -0000 1.5
@@ -18,7 +18,7 @@
import java.util.Iterator;
/**
- * Defines an iterator that operates over a ordered collections.
+ * Defines an iterator that operates over an ordered collection.
* <p>
* This iterator allows both forward and reverse iteration through the collection.
*
@@ -28,9 +28,9 @@
* @author Stephen Colebourne
*/
public interface OrderedIterator extends Iterator {
-
+
/**
- * Checks to see if there is a previous entry that can be iterated to.
+ * Checks to see if there is a previous element that can be iterated to.
*
* @return <code>true</code> if the iterator has a previous element
*/
@@ -39,7 +39,7 @@
/**
* Gets the previous element from the collection.
*
- * @return the previous key in the iteration
+ * @return the previous element in the iteration
* @throws java.util.NoSuchElementException if the iteration is finished
*/
Object previous();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]