Fix to avoid javadoc generation warnings

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130832 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2002-10-13 13:55:35 +00:00
parent de7c3085ac
commit 86df16092e
3 changed files with 18 additions and 18 deletions

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestList.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $
* $Revision: 1.12 $
* $Date: 2002/10/12 22:36:22 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestList.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $
* $Revision: 1.13 $
* $Date: 2002/10/13 13:55:35 $
*
* ====================================================================
*
@ -89,7 +89,7 @@ import java.util.NoSuchElementException;
*
* @author Rodney Waldhoff
* @author Paul Jack
* @version $Id: TestList.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $
* @version $Id: TestList.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $
*/
public abstract class TestList extends TestCollection {
@ -1051,7 +1051,7 @@ public abstract class TestList extends TestCollection {
/**
* Tests that a sublist raises a {@link ConcurrentModificationException}
* Tests that a sublist raises a {@link java.util.ConcurrentModificationException ConcurrentModificationException}
* if elements are added to the original list.
*/
public void testListSubListFailFastOnAdd() {
@ -1082,7 +1082,7 @@ public abstract class TestList extends TestCollection {
/**
* Tests that a sublist raises a {@link ConcurrentModificationException}
* Tests that a sublist raises a {@link java.util.ConcurrentModificationException ConcurrentModificationException}
* if elements are removed from the original list.
*/
public void testListSubListFailFastOnRemove() {
@ -1118,7 +1118,7 @@ public abstract class TestList extends TestCollection {
/**
* Invokes all the methods on the given sublist to make sure they raise
* a {@link ConcurrentModificationException}.
* a {@link java.util.ConcurrentModificationException ConcurrentModificationException}.
*/
protected void failFastAll(List list) {
Method[] methods = List.class.getMethods();
@ -1130,7 +1130,7 @@ public abstract class TestList extends TestCollection {
/**
* Invokes the given method on the given sublist to make sure it raises
* a {@link ConcurrentModificationException}.
* a {@link java.util.ConcurrentModificationException ConcurrentModificationException}.
*
* Unless the method happens to be the equals() method, in which case
* the test is skipped. There seems to be a bug in

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.19 2002/10/12 22:36:22 scolebourne Exp $
* $Revision: 1.19 $
* $Date: 2002/10/12 22:36:22 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.20 2002/10/13 13:55:35 scolebourne Exp $
* $Revision: 1.20 $
* $Date: 2002/10/13 13:55:35 $
*
* ====================================================================
*
@ -152,7 +152,7 @@ import java.util.Set;
* @author Michael Smith
* @author Rodney Waldhoff
* @author Paul Jack
* @version $Id: TestMap.java,v 1.19 2002/10/12 22:36:22 scolebourne Exp $
* @version $Id: TestMap.java,v 1.20 2002/10/13 13:55:35 scolebourne Exp $
*/
public abstract class TestMap extends TestObject {
@ -335,7 +335,7 @@ public abstract class TestMap extends TestObject {
/**
* Return a new, populated map. The mappings in the map should match the
* keys and values returned from {@linke #getSampleKeys()} and {@link
* keys and values returned from {@link #getSampleKeys()} and {@link
* #getSampleValues()}. The default implementation uses makeEmptyMap()
* and calls {@link #addSampleMappings()} to add all the mappings to the
* map.

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestObject.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $
* $Revision: 1.12 $
* $Date: 2002/10/12 22:36:22 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestObject.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $
* $Revision: 1.13 $
* $Date: 2002/10/13 13:55:35 $
*
* ====================================================================
*
@ -74,7 +74,7 @@ import java.io.OutputStream;
import java.io.Serializable;
/**
* Tests base {@link java.util.Object} methods and contracts.
* Tests base {@link java.lang.Object} methods and contracts.
* <p>
* To use, simply extend this class, and implement
* the {@link #makeObject()} method.
@ -84,7 +84,7 @@ import java.io.Serializable;
* test case (method) your {@link Object} fails.
*
* @author Rodney Waldhoff
* @version $Id: TestObject.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $
* @version $Id: TestObject.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $
*/
public abstract class TestObject extends BulkTest {
public TestObject(String testName) {