Javadoc fixes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1451209 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-02-28 14:24:07 +00:00
parent 090f04d180
commit 139aa3660c
1 changed files with 4 additions and 5 deletions

View File

@ -26,7 +26,7 @@ import org.apache.commons.collections.list.UnmodifiableList;
/**
* An IteratorChain is an Iterator that wraps a number of Iterators.
* <p>
* This class makes multiple iterators look like one to the caller When any
* This class makes multiple iterators look like one to the caller. When any
* method from the Iterator interface is called, the IteratorChain will delegate
* to a single underlying Iterator. The IteratorChain will invoke the Iterators
* in sequence until all Iterators are exhausted.
@ -35,10 +35,9 @@ import org.apache.commons.collections.list.UnmodifiableList;
* efficient (and convenient) than reading out the contents of each Iterator
* into a List and creating a new Iterator.
* <p>
* Calling a method that adds new Iterator<i>after a method in the Iterator
* interface has been called</i> will result in an
* UnsupportedOperationException. Subclasses should <i>take care</i> to not
* alter the underlying List of Iterators.
* Calling a method that adds new Iterator <i>after a method in the Iterator
* interface has been called</i> will result in an UnsupportedOperationException.
* Subclasses should <i>take care</i> to not alter the underlying List of Iterators.
* <p>
* NOTE: As from version 3.0, the IteratorChain may contain no iterators. In
* this case the class will function as an empty iterator.