Fix various javadoc link warnings

bug 23680, from Eric Johnson


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131268 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-10-09 20:44:32 +00:00
parent c676de25d3
commit 0deed47b72
6 changed files with 43 additions and 37 deletions

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/comparators/NullComparator.java,v 1.8 2003/08/31 17:25:49 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/comparators/NullComparator.java,v 1.9 2003/10/09 20:44:32 scolebourne Exp $
* ====================================================================
* The Apache Software License, Version 1.1
*
@ -60,14 +60,14 @@ import java.io.Serializable;
import java.util.Comparator;
/**
* A Comparator that will compare nulls to be either lower or higher than
* other objects.
* A Comparator that will compare nulls to be either lower or higher than
* other objects.
*
* @since Commons Collections 2.0
* @version $Revision: 1.8 $ $Date: 2003/08/31 17:25:49 $
* @since Commons Collections 2.0
* @version $Revision: 1.9 $ $Date: 2003/10/09 20:44:32 $
*
* @author <a href="mailto:mas@apache.org">Michael A. Smith</a>
**/
* @author Michael A. Smith
*/
public class NullComparator implements Comparator, Serializable {
/**
@ -191,7 +191,7 @@ public class NullComparator implements Comparator, Serializable {
* Determines whether the specified object represents a comparator that is
* equal to this comparator.
*
* @param o the object to compare this comparator with.
* @param obj the object to compare this comparator with.
*
* @return <code>true</code> if the specified object is a NullComparator
* with equivalent <code>null</code> comparison behavior

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/SetList.java,v 1.2 2003/10/04 00:50:35 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/SetList.java,v 1.3 2003/10/09 20:44:32 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -75,13 +75,12 @@ import java.util.Set;
* result of rejecting duplicates.
* Each violation is explained in the method, but it should not affect you.
* <p>
* The {@link org.apache.commons.collections.decorators.OrderedSet OrderedSet}
* class provides an alternative approach, by wrapping an existing Set and
* retaining insertion order in the iterator. This class offers the <code>List</code>
* interface implementation as well.
* The {@link OrderedSet} class provides an alternative approach, by wrapping
* an existing Set and retaining insertion order in the iterator.
* This class offers the <code>List</code> interface implementation as well.
*
* @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/10/04 00:50:35 $
* @version $Revision: 1.3 $ $Date: 2003/10/09 20:44:32 $
*
* @author Matthew Hawthorne
* @author Stephen Colebourne
@ -193,8 +192,7 @@ public class SetList extends AbstractListDecorator {
* The <code>List</code> interface makes the assumption that the element is
* always inserted. This may not happen with this implementation.
*
* @param index the index to insert at
* @param object the object to add
* @param coll the collection to add
*/
public boolean addAll(Collection coll) {
return addAll(size(), coll);

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ArrayListIterator.java,v 1.7 2003/10/05 23:21:07 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ArrayListIterator.java,v 1.8 2003/10/09 20:44:32 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -58,14 +58,14 @@
package org.apache.commons.collections.iterators;
import java.lang.reflect.Array;
import java.util.ListIterator;
import java.util.NoSuchElementException;
/**
* Implements a {@link java.util.ListIterator ListIterator} over an array.
* Implements a {@link ListIterator} over an array.
* <p>
* The array can be either an array of object or of primitives. If you know
* that you have an object array, the
* {@link org.apache.commons.collections.iterators.ObjectArrayListIterator ObjectArrayListIterator}
* that you have an object array, the {@link ObjectArrayListIterator}
* class is a better choice, as it will perform better.
*
* <p>
@ -77,13 +77,14 @@ import java.util.NoSuchElementException;
* @see java.util.ListIterator
*
* @since Commons Collections 3.0
* @version $Revision: 1.7 $ $Date: 2003/10/05 23:21:07 $
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:44:32 $
*
* @author Neil O'Toole
* @author Stephen Colebourne
* @author Phil Steitz
*/
public class ArrayListIterator extends ArrayIterator implements ResetableListIterator {
public class ArrayListIterator extends ArrayIterator
implements ListIterator, ResetableListIterator {
/**
* Holds the index of the last item returned by a call to <code>next()</code>

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ObjectArrayListIterator.java,v 1.7 2003/09/29 03:56:12 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ObjectArrayListIterator.java,v 1.8 2003/10/09 20:44:32 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,6 +57,7 @@
*/
package org.apache.commons.collections.iterators;
import java.util.ListIterator;
import java.util.NoSuchElementException;
/**
@ -73,13 +74,14 @@ import java.util.NoSuchElementException;
* @see java.util.ListIterator
*
* @since Commons Collections 3.0
* @version $Revision: 1.7 $ $Date: 2003/09/29 03:56:12 $
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:44:32 $
*
* @author <a href="mailto:neilotoole@users.sourceforge.net">Neil O'Toole</a>
* @author Stephen Colebourne
* @author Phil Steitz
*/
public class ObjectArrayListIterator extends ObjectArrayIterator implements ResetableListIterator {
public class ObjectArrayListIterator extends ObjectArrayIterator
implements ListIterator, ResetableListIterator {
/**
* Holds the index of the last item returned by a call to <code>next()</code>

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/SingletonIterator.java,v 1.7 2003/10/09 11:05:27 rwaldhoff Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/SingletonIterator.java,v 1.8 2003/10/09 20:44:32 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,20 +57,22 @@
*/
package org.apache.commons.collections.iterators;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* <p><code>SingletonIterator</code> is an {@link Iterator} over a single
* object instance.</p>
* <code>SingletonIterator</code> is an {@link Iterator} over a single
* object instance.
*
* @since Commons Collections 2.0
* @version $Revision: 1.7 $ $Date: 2003/10/09 11:05:27 $
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:44:32 $
*
* @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
* @author James Strachan
* @author Stephen Colebourne
* @author Rodney Waldhoff
*/
public class SingletonIterator implements ResetableIterator {
public class SingletonIterator
implements Iterator, ResetableIterator {
private boolean beforeFirst = true;
private boolean removed = false;

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/SingletonListIterator.java,v 1.7 2003/10/09 11:05:27 rwaldhoff 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.8 2003/10/09 20:44:32 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,18 +57,21 @@
*/
package org.apache.commons.collections.iterators;
import java.util.ListIterator;
import java.util.NoSuchElementException;
/**
* <p><code>SingletonIterator</code> is an {@link ListIterator} over a single
* object instance.</p>
/**
* <code>SingletonIterator</code> is an {@link ListIterator} over a single
* object instance.
*
* @since Commons Collections 2.1
* @version $Revision: 1.7 $ $Date: 2003/10/09 11:05:27 $
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:44:32 $
*
* @author Stephen Colebourne
* @author Rodney Waldhoff
*/
public class SingletonListIterator implements ResetableListIterator {
public class SingletonListIterator
implements ListIterator, ResetableListIterator {
private boolean beforeFirst = true;
private boolean nextCalled = false;