morgand 02/04/09 09:33:40
Modified: collections/src/java/org/apache/commons/collections
IteratorChain.java
Log:
fixed doco bug
Revision Changes Path
1.3 +8 -11
jakarta-commons/collections/src/java/org/apache/commons/collections/IteratorChain.java
Index: IteratorChain.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/IteratorChain.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- IteratorChain.java 8 Apr 2002 23:59:58 -0000 1.2
+++ IteratorChain.java 9 Apr 2002 16:33:40 -0000 1.3
@@ -1,7 +1,7 @@
/*
- * $Header:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/IteratorChain.java,v
1.2 2002/04/08 23:59:58 morgand Exp $
- * $Revision: 1.2 $
- * $Date: 2002/04/08 23:59:58 $
+ * $Header:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/IteratorChain.java,v
1.3 2002/04/09 16:33:40 morgand Exp $
+ * $Revision: 1.3 $
+ * $Date: 2002/04/09 16:33:40 $
*
* ====================================================================
*
@@ -67,20 +67,17 @@
/**
* <p>An IteratorChain is an Iterator that wraps one or
- * more Iterators in sequence. When any method from the
+ * more Iterators. When any method from the
* Iterator interface is called, the IteratorChain will
- * call the same method on the first Iterator in the chain
- * until it is exhausted until the first Iterator is exhausted.
- * At that point, the IteratorChain will move to the next
- * Iterator in the IteratorChain. The IteratorChain will
- * continue in this pattern until all Iterators in the
- * IteratorChain are exhausted.</p>
+ * proxy to a single underlying Iterator. The
+ * IteratorChain will invoke the Iterators in sequence until
+ * all Iterators are exhausted completely.</p>
*
* <p>Under many circumstances, linking Iterators together
* in this manner is more efficient (and convenient)
* than reading out the contents of each Iterator into a
* List and creating a new Iterator.</p>
- *
+ *
* <p>Calling a method that adds new Iterator<i>after
* a method in the Iterator interface
* has been called</i> will result in an
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>