Add since tags for v3.2

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@405925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2006-05-12 22:52:43 +00:00
parent 9d46da6c8c
commit 6185b726ea
2 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,8 @@ import org.apache.commons.collections.ResettableListIterator;
* of as the underlying iterator is traversed.
* <p>
* The optional operations of <code>ListIterator</code> are not supported.
* <p>
* This class implements ResettableListIterator from Commons Collections 3.2.
*
* @since Commons Collections 2.1
* @version $Revision$ $Date$
@ -183,6 +185,8 @@ public class ListIteratorWrapper implements ResettableListIterator {
/**
* Resets this iterator back to the position at which the iterator
* was created.
*
* @since Commons Collections 3.2
*/
public void reset() {
currentIndex = 0;

View File

@ -34,6 +34,7 @@ import org.apache.commons.collections.ResettableListIterator;
*
* @author Serge Knystautas
* @author Stephen Colebourne
* @since Commons Collections 3.2
* @version $Revision: $ $Date$
*/
public class ReverseListIterator implements ResettableListIterator {