Javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131246 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5dc2c46e26
commit
19d811d68e
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestCollection.java,v 1.2 2003/10/04 00:49:27 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestCollection.java,v 1.3 2003/10/05 23:10:31 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -70,7 +70,7 @@ import java.util.Map;
|
|||
import java.util.NoSuchElementException;
|
||||
|
||||
/**
|
||||
* Abstract test class for the {@link java.util.Collection} methods and contracts.
|
||||
* Abstract test class for {@link java.util.Collection} methods and contracts.
|
||||
* <p>
|
||||
* You should create a concrete subclass of this class to test any custom
|
||||
* {@link Collection} implementation. At minimum, you'll have to
|
||||
|
@ -146,7 +146,7 @@ import java.util.NoSuchElementException;
|
|||
* you may still use this base set of cases. Simply override the
|
||||
* test case (method) your {@link Collection} fails.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/04 00:49:27 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/05 23:10:31 $
|
||||
*
|
||||
* @author Rodney Waldhoff
|
||||
* @author Paul Jack
|
||||
|
@ -161,7 +161,7 @@ public abstract class AbstractTestCollection extends AbstractTestObject {
|
|||
//
|
||||
// Collection doesn't define any semantics for equals, and recommends you
|
||||
// use reference-based default behavior of Object.equals. (And a test for
|
||||
// that already exists in TestObject). Tests for equality of lists, sets
|
||||
// that already exists in AbstractTestObject). Tests for equality of lists, sets
|
||||
// and bags will have to be written in test subclasses. Thus, there is no
|
||||
// tests on Collection.equals nor any for Collection.hashCode.
|
||||
//
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestSet.java,v 1.1 2003/10/02 22:48:41 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestSet.java,v 1.2 2003/10/05 23:10:31 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -75,10 +75,10 @@ import java.util.Set;
|
|||
* To use, subclass and override the {@link #makeEmptySet()}
|
||||
* method. You may have to override other protected methods if your
|
||||
* set is not modifiable, or if your set restricts what kinds of
|
||||
* elements may be added; see {@link TestCollection} for more details.
|
||||
* elements may be added; see {@link AbstractTestCollection} for more details.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.1 $ $Date: 2003/10/02 22:48:41 $
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/05 23:10:31 $
|
||||
*
|
||||
* @author Paul Jack
|
||||
*/
|
||||
|
@ -173,14 +173,14 @@ public abstract class AbstractTestSet extends AbstractTestCollection {
|
|||
|
||||
//-----------------------------------------------------------------------
|
||||
/**
|
||||
* Return the {@link TestCollection#collection} fixture, but cast as a Set.
|
||||
* Return the {@link AbstractTestCollection#collection} fixture, but cast as a Set.
|
||||
*/
|
||||
protected Set getSet() {
|
||||
return (Set)collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the {@link TestCollection#confirmed} fixture, but cast as a Set.
|
||||
* Return the {@link AbstractTestCollection#confirmed} fixture, but cast as a Set.
|
||||
*/
|
||||
protected Set getConfirmedSet() {
|
||||
return (Set)confirmed;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestSortedBag.java,v 1.1 2003/10/02 22:35:31 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestSortedBag.java,v 1.2 2003/10/05 23:10:31 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -58,10 +58,10 @@
|
|||
package org.apache.commons.collections;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link java.util.SortedBag} methods and contracts.
|
||||
* Abstract test class for {@link SortedBag} methods and contracts.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.1 $ $Date: 2003/10/02 22:35:31 $
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/05 23:10:31 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestSortedSet.java,v 1.1 2003/10/02 22:48:41 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/AbstractTestSortedSet.java,v 1.2 2003/10/05 23:10:31 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -69,10 +69,10 @@ import java.util.TreeSet;
|
|||
* To use, subclass and override the {@link #makeEmptySet()}
|
||||
* method. You may have to override other protected methods if your
|
||||
* set is not modifiable, or if your set restricts what kinds of
|
||||
* elements may be added; see {@link TestCollection} for more details.
|
||||
* elements may be added; see {@link AbstractTestCollection} for more details.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.1 $ $Date: 2003/10/02 22:48:41 $
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/05 23:10:31 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
* @author Dieter Wimberger
|
||||
|
@ -125,7 +125,7 @@ public abstract class AbstractTestSortedSet extends AbstractTestSet {
|
|||
|
||||
//-----------------------------------------------------------------------
|
||||
/**
|
||||
* Return the {@link TestCollection#confirmed} fixture, but cast as a
|
||||
* Return the {@link AbstractTestCollection#confirmed} fixture, but cast as a
|
||||
* SortedSet.
|
||||
*/
|
||||
protected SortedSet getConfirmedSortedSet() {
|
||||
|
@ -163,7 +163,7 @@ public abstract class AbstractTestSortedSet extends AbstractTestSet {
|
|||
* After modification operations, {@link #verify()} is invoked to ensure
|
||||
* that the set and the other collection views are still valid.
|
||||
*
|
||||
* @return a {@link TestSet} instance for testing a subset.
|
||||
* @return a {@link AbstractTestSet} instance for testing a subset.
|
||||
*/
|
||||
public BulkTest bulkTestSortedSetSubSet() {
|
||||
int length = getFullElements().length;
|
||||
|
@ -180,7 +180,7 @@ public abstract class AbstractTestSortedSet extends AbstractTestSet {
|
|||
* After modification operations, {@link #verify()} is invoked to ensure
|
||||
* that the set and the other collection views are still valid.
|
||||
*
|
||||
* @return a {@link TestSet} instance for testing a headset.
|
||||
* @return a {@link AbstractTestSet} instance for testing a headset.
|
||||
*/
|
||||
public BulkTest bulkTestSortedSetHeadSet() {
|
||||
int length = getFullElements().length;
|
||||
|
@ -197,7 +197,7 @@ public abstract class AbstractTestSortedSet extends AbstractTestSet {
|
|||
* After modification operations, {@link #verify()} is invoked to ensure
|
||||
* that the set and the other collection views are still valid.
|
||||
*
|
||||
* @return a {@link TestSet} instance for testing a tailset.
|
||||
* @return a {@link AbstractTestSet} instance for testing a tailset.
|
||||
*/
|
||||
public BulkTest bulkTestSortedSetTailSet() {
|
||||
int length = getFullElements().length;
|
||||
|
|
Loading…
Reference in New Issue