Author: sebb
Date: Tue Feb 17 13:34:20 2009
New Revision: 745049

URL: http://svn.apache.org/viewvc?rev=745049&view=rev
Log:
Javadoc fix

Modified:
    
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestHashBag.java
    
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestLinkedList.java

Modified: 
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestHashBag.java
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestHashBag.java?rev=745049&r1=745048&r2=745049&view=diff
==============================================================================
--- 
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestHashBag.java
 (original)
+++ 
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestHashBag.java
 Tue Feb 17 13:34:20 2009
@@ -22,7 +22,7 @@
 import org.apache.commons.collections.bag.AbstractTestBag;
 
 /**
- * Extension of {...@link TestBag} for exercising the {...@link HashBag}
+ * Extension of {...@link AbstractTestBag} for exercising the {...@link 
HashBag}
  * implementation.
  * 
  * @version $Revision$ $Date$

Modified: 
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestLinkedList.java
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestLinkedList.java?rev=745049&r1=745048&r2=745049&view=diff
==============================================================================
--- 
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestLinkedList.java
 (original)
+++ 
commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestLinkedList.java
 Tue Feb 17 13:34:20 2009
@@ -28,7 +28,7 @@
  * Tests base {...@link java.util.LinkedList} methods and contracts.
  * <p>
  * To use, simply extend this class, and implement
- * the {...@link #makeLinkedList} method.
+ * the {...@link #makeEmptyLinkedList()} method.
  * <p>
  * If your {...@link LinkedList} fails one of these tests by design,
  * you may still use this base set of cases.  Simply override the
@@ -126,7 +126,7 @@
     }
 
     /**
-     *  Tests {...@link LinkedList#getFirst(Object)}.
+     *  Tests {...@link LinkedList#getFirst()}.
      */
     public void testLinkedListGetFirst() {
         resetEmpty();
@@ -148,7 +148,7 @@
     }
 
     /**
-     *  Tests {...@link LinkedList#getLast(Object)}.
+     *  Tests {...@link LinkedList#getLast()}.
      */
     public void testLinkedListGetLast() {
         resetEmpty();
@@ -170,7 +170,7 @@
     }
 
     /**
-     *  Tests {...@link LinkedList#removeFirst(Object)}.
+     *  Tests {...@link LinkedList#removeFirst()}.
      */
     public void testLinkedListRemoveFirst() {
         if (!isRemoveSupported()) return;
@@ -194,7 +194,7 @@
     }
 
     /**
-     *  Tests {...@link LinkedList#removeLast(Object)}.
+     *  Tests {...@link LinkedList#removeLast()}.
      */
     public void testLinkedListRemoveLast() {
         if (!isRemoveSupported()) return;
@@ -218,14 +218,14 @@
     }
 
     /**
-     *  Returns an empty {...@link ArrayList}.
+     *  Returns an empty {...@link LinkedList}.
      */
     public Collection makeConfirmedCollection() {
         return new LinkedList();
     }
 
     /**
-     *  Returns a full {...@link ArrayList}.
+     *  Returns a full {...@link LinkedList}.
      */
     public Collection makeConfirmedFullCollection() {
         List list = new LinkedList();


Reply via email to