Reverted to [collections] javadoc style

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131143 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2003-09-07 15:09:34 +00:00
parent 3c6542af60
commit ff9345bae1
5 changed files with 17 additions and 17 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/CollectionUtils.java,v 1.37 2003/09/07 08:45:16 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CollectionUtils.java,v 1.38 2003/09/07 15:09:34 psteitz Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -81,7 +81,7 @@ import org.apache.commons.collections.iterators.EnumerationIterator;
* A set of {@link Collection} related utility methods. * A set of {@link Collection} related utility methods.
* *
* @since Commons Collections 1.0 * @since Commons Collections 1.0
* @version $Revision: 1.37 $ $Date: 2003/09/07 08:45:16 $ * @version $Revision: 1.38 $ $Date: 2003/09/07 15:09:34 $
* *
* @author Rodney Waldhoff * @author Rodney Waldhoff
* @author Paul Jack * @author Paul Jack
@ -289,7 +289,7 @@ public class CollectionUtils {
* <li><code>a.size()</code> and <code>b.size()</code> represent the * <li><code>a.size()</code> and <code>b.size()</code> represent the
* total cardinality of <i>a</i> and <i>b</i>, resp. </li> * total cardinality of <i>a</i> and <i>b</i>, resp. </li>
* <li><code>a.size() < Integer.MAXVALUE</code></li> * <li><code>a.size() < Integer.MAXVALUE</code></li>
* </ul></p> * </ul>
* *
* @see #isSubCollection * @see #isSubCollection
* @see Collection#containsAll * @see Collection#containsAll

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/PredicatedMap.java,v 1.5 2003/09/05 03:35:07 psteitz Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/PredicatedMap.java,v 1.6 2003/09/07 15:09:34 psteitz Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -69,10 +69,10 @@ import org.apache.commons.collections.Predicate;
* to validate that additions match a specified predicate. * to validate that additions match a specified predicate.
* <p> * <p>
* If an object cannot be added to the map, an IllegalArgumentException * If an object cannot be added to the map, an IllegalArgumentException
* is thrown.</p> * is thrown.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.5 $ $Date: 2003/09/05 03:35:07 $ * @version $Revision: 1.6 $ $Date: 2003/09/07 15:09:34 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Paul Jack * @author Paul Jack
@ -88,7 +88,7 @@ public class PredicatedMap extends AbstractMapDecorator {
* Factory method to create a predicated (validating) map. * Factory method to create a predicated (validating) map.
* <p> * <p>
* If there are any elements already in the list being decorated, they * If there are any elements already in the list being decorated, they
* are validated.</p> * are validated.
* *
* @param map the map to decorate, must not be null * @param map the map to decorate, must not be null
* @param keyPredicate the predicate to validate the keys, null means no check * @param keyPredicate the predicate to validate the keys, null means no check

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/PredicatedSortedMap.java,v 1.4 2003/09/05 03:35:07 psteitz Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/PredicatedSortedMap.java,v 1.5 2003/09/07 15:09:34 psteitz Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -67,10 +67,10 @@ import org.apache.commons.collections.Predicate;
* to validate that additions match a specified predicate. * to validate that additions match a specified predicate.
* <p> * <p>
* If an object cannot be added to the map, an IllegalArgumentException * If an object cannot be added to the map, an IllegalArgumentException
* is thrown.</p> * is thrown.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2003/09/05 03:35:07 $ * @version $Revision: 1.5 $ $Date: 2003/09/07 15:09:34 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Paul Jack * @author Paul Jack
@ -81,7 +81,7 @@ public class PredicatedSortedMap extends PredicatedMap implements SortedMap {
* Factory method to create a predicated (validating) sorted map. * Factory method to create a predicated (validating) sorted map.
* <p> * <p>
* If there are any elements already in the list being decorated, they * If there are any elements already in the list being decorated, they
* are validated.</p> * are validated.
* *
* @param map the map to decorate, must not be null * @param map the map to decorate, must not be null
* @param keyPredicate the predicate to validate the keys, null means no check * @param keyPredicate the predicate to validate the keys, null means no check

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/TransformedSortedMap.java,v 1.3 2003/09/05 03:35:07 psteitz Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/TransformedSortedMap.java,v 1.4 2003/09/07 15:09:34 psteitz Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -72,7 +72,7 @@ import org.apache.commons.collections.Transformer;
* use the Integer form to remove objects. * use the Integer form to remove objects.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.3 $ $Date: 2003/09/05 03:35:07 $ * @version $Revision: 1.4 $ $Date: 2003/09/07 15:09:34 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
*/ */
@ -82,7 +82,7 @@ public class TransformedSortedMap extends TransformedMap implements SortedMap {
* Factory method to create a transforming sorted map. * Factory method to create a transforming sorted map.
* <p> * <p>
* If there are any elements already in the map being decorated, they * If there are any elements already in the map being decorated, they
* are NOT transformed.</p> * are NOT transformed.
* *
* @param map the map to decorate, must not be null * @param map the map to decorate, must not be null
* @param keyTransformer the predicate to validate the keys, null means no transformation * @param keyTransformer the predicate to validate the keys, null means no transformation

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/UnmodifiableBoundedCollection.java,v 1.3 2003/09/05 03:35:07 psteitz Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/UnmodifiableBoundedCollection.java,v 1.4 2003/09/07 15:09:34 psteitz Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -71,7 +71,7 @@ import org.apache.commons.collections.BoundedCollection;
* examining the package scope variables. * examining the package scope variables.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.3 $ $Date: 2003/09/05 03:35:07 $ * @version $Revision: 1.4 $ $Date: 2003/09/07 15:09:34 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
*/ */
@ -91,7 +91,7 @@ public class UnmodifiableBoundedCollection extends UnmodifiableCollection implem
* Factory method to create an unmodifiable bounded collection. * Factory method to create an unmodifiable bounded collection.
* <p> * <p>
* This method is capable of drilling down through up to 1000 other decorators * This method is capable of drilling down through up to 1000 other decorators
* to find a suitable BoundedCollection.</p> * to find a suitable BoundedCollection.
* *
* @param coll the <code>BoundedCollection</code> to decorate, must not be null * @param coll the <code>BoundedCollection</code> to decorate, must not be null
* @throws IllegalArgumentException if bag is null * @throws IllegalArgumentException if bag is null