Fixed JavaDoc errors.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130803 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
pjack 2002-08-19 21:56:18 +00:00
parent cddf8c5c66
commit 32dc4757e6
3 changed files with 15 additions and 16 deletions

View File

@ -1,7 +1,7 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/IteratorUtils.java,v 1.2 2002/08/17 22:14:22 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/IteratorUtils.java,v 1.3 2002/08/19 21:56:18 pjack Exp $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2002/08/17 22:14:22 $ * $Date: 2002/08/19 21:56:18 $
* *
* ==================================================================== * ====================================================================
* *
@ -91,7 +91,7 @@ import org.apache.commons.collections.iterators.TransformIterator;
* <code>org.apache.commons.collections.iterators</code> subpackage. * <code>org.apache.commons.collections.iterators</code> subpackage.
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: IteratorUtils.java,v 1.2 2002/08/17 22:14:22 scolebourne Exp $ * @version $Id: IteratorUtils.java,v 1.3 2002/08/19 21:56:18 pjack Exp $
* @since 2.1 * @since 2.1
*/ */
public class IteratorUtils { public class IteratorUtils {
@ -282,7 +282,7 @@ public class IteratorUtils {
* contained in a collection of ordered {@link Iterator}s. * contained in a collection of ordered {@link Iterator}s.
* <p> * <p>
* Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>, * Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>,
* the {@link #next} method will return the lesser of * the {@link Iterator#next()} method will return the lesser of
* <code>A.next()</code> and <code>B.next()</code>. * <code>A.next()</code> and <code>B.next()</code>.
* <p> * <p>
* The comparator is optional. If null is specified then natural order is used. * The comparator is optional. If null is specified then natural order is used.
@ -302,7 +302,7 @@ public class IteratorUtils {
* contained in an array of {@link Iterator}s. * contained in an array of {@link Iterator}s.
* <p> * <p>
* Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>, * Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>,
* the {@link #next} method will return the lesser of * the {@link Iterator#next()} method will return the lesser of
* <code>A.next()</code> and <code>B.next()</code> and so on. * <code>A.next()</code> and <code>B.next()</code> and so on.
* <p> * <p>
* The comparator is optional. If null is specified then natural order is used. * The comparator is optional. If null is specified then natural order is used.
@ -321,7 +321,7 @@ public class IteratorUtils {
* contained in a collection of {@link Iterator}s. * contained in a collection of {@link Iterator}s.
* <p> * <p>
* Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>, * Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>,
* the {@link #next} method will return the lesser of * the {@link Iterator#next()} method will return the lesser of
* <code>A.next()</code> and <code>B.next()</code> and so on. * <code>A.next()</code> and <code>B.next()</code> and so on.
* <p> * <p>
* The comparator is optional. If null is specified then natural order is used. * The comparator is optional. If null is specified then natural order is used.

View File

@ -1,7 +1,7 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/MapUtils.java,v 1.11 2002/08/18 20:11:37 pjack Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/MapUtils.java,v 1.12 2002/08/19 21:56:18 pjack Exp $
* $Revision: 1.11 $ * $Revision: 1.12 $
* $Date: 2002/08/18 20:11:37 $ * $Date: 2002/08/19 21:56:18 $
* *
* ==================================================================== * ====================================================================
* *
@ -73,7 +73,6 @@ import java.util.*;
* It also provides the following decorators: * It also provides the following decorators:
* *
* <UL> * <UL>
* <LI>{@link #boundedMap(Map,int)}
* <LI>{@link #fixedSizeMap(Map)} * <LI>{@link #fixedSizeMap(Map)}
* <LI>{@link #fixedSizeSortedMap(SortedMap)} * <LI>{@link #fixedSizeSortedMap(SortedMap)}
* <LI>{@link #lazyMap(Map,Factory)} * <LI>{@link #lazyMap(Map,Factory)}

View File

@ -1,7 +1,7 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/SingletonListIterator.java,v 1.1 2002/08/17 11:33:56 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/SingletonListIterator.java,v 1.2 2002/08/19 21:56:18 pjack Exp $
* $Revision: 1.1 $ * $Revision: 1.2 $
* $Date: 2002/08/17 11:33:56 $ * $Date: 2002/08/19 21:56:18 $
* *
* ==================================================================== * ====================================================================
* *
@ -68,7 +68,7 @@ import java.util.NoSuchElementException;
* *
* @since 2.1 * @since 2.1
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: SingletonListIterator.java,v 1.1 2002/08/17 11:33:56 scolebourne Exp $ * @version $Id: SingletonListIterator.java,v 1.2 2002/08/19 21:56:18 pjack Exp $
*/ */
public class SingletonListIterator implements ListIterator { public class SingletonListIterator implements ListIterator {
@ -120,7 +120,7 @@ public class SingletonListIterator implements ListIterator {
/** /**
* Returns the index of the element that would be returned by a subsequent * Returns the index of the element that would be returned by a subsequent
* call to <tt>previous</tt>. -1 indicates that the iterator is currently at * call to <tt>previous</tt>. A return value of -1 indicates that the iterator is currently at
* the start. * the start.
* *
* @return 0 or -1 depending on current state. * @return 0 or -1 depending on current state.