scolebourne 2003/07/12 09:23:33
Modified: collections/src/test/org/apache/commons/collections
TestCollection.java
Log:
Javadoc fixes
from Dieter Wimberger
Revision Changes Path
1.14 +12 -15
jakarta-commons/collections/src/test/org/apache/commons/collections/TestCollection.java
Index: TestCollection.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/TestCollection.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- TestCollection.java 12 Jul 2003 15:47:53 -0000 1.13
+++ TestCollection.java 12 Jul 2003 16:23:33 -0000 1.14
@@ -93,10 +93,11 @@
* <p>
* Override these if your collection doesn't support certain operations:
* <UL>
- * <LI>[EMAIL PROTECTED] #isAddSuppoted()}
+ * <LI>[EMAIL PROTECTED] #isAddSupported()}
* <LI>[EMAIL PROTECTED] #isRemoveSupported()}
* <li>[EMAIL PROTECTED] #areEqualElementsDistinguishable()}
* <LI>[EMAIL PROTECTED] #isNullSupported()}
+ * <LI>[EMAIL PROTECTED] #isFailFastSupported()}
* </UL>
* <p>
* <B>Fixture Methods</B>
@@ -146,11 +147,7 @@
* <p>
* If your [EMAIL PROTECTED] Collection} fails one of these tests by design,
* you may still use this base set of cases. Simply override the
- * test case (method) your [EMAIL PROTECTED] Collection} fails. For instance, the
- * [EMAIL PROTECTED] #testIteratorFailFast()} method is provided since most
collections
- * have fail-fast iterators; however, that's not strictly required by the
- * collection contract, so you may want to override that method to do
- * nothing.
+ * test case (method) your [EMAIL PROTECTED] Collection} fails.
*
* @author Rodney Waldhoff
* @author Paul Jack
@@ -445,7 +442,7 @@
//-----------------------------------------------------------------------
/**
* Returns a list of elements suitable for return by
- * [EMAIL PROTECTED] getFullElements()}. The array returned by this method
+ * [EMAIL PROTECTED] #getFullElements()}. The array returned by this method
* does not include null, but does include a variety of objects
* of different types. Override getFullElements to return
* the results of this method if your collection does not support
@@ -476,7 +473,7 @@
/**
* Returns the default list of objects returned by
- * [EMAIL PROTECTED] getOtherElements()}. Includes many objects
+ * [EMAIL PROTECTED] #getOtherElements()}. Includes many objects
* of different types.
*/
protected Object[] getOtherNonNullElements() {
@@ -495,7 +492,7 @@
/**
* Returns a list of string elements suitable for return by
- * [EMAIL PROTECTED] getFullElements()}. Override getFullElements to return
+ * [EMAIL PROTECTED] #getFullElements()}. Override getFullElements to return
* the results of this method if your collection does not support
* heterogenous elements or the null element.
*/
@@ -508,7 +505,7 @@
/**
* Returns a list of string elements suitable for return by
- * [EMAIL PROTECTED] getOtherElements()}. Override getOtherElements to return
+ * [EMAIL PROTECTED] #getOtherElements()}. Override getOtherElements to return
* the results of this method if your collection does not support
* heterogenous elements or the null element.
*/
@@ -1105,7 +1102,7 @@
/**
- * Tests [EMAIL PROTECTED] Collection.toArray(Object[])}.
+ * Tests [EMAIL PROTECTED] Collection#toArray(Object[])}.
*/
public void testCollectionToArray2() {
resetEmpty();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]