diff --git a/src/java/org/apache/commons/collections/CollectionUtils.java b/src/java/org/apache/commons/collections/CollectionUtils.java index a4691ebf9..99d5d14db 100644 --- a/src/java/org/apache/commons/collections/CollectionUtils.java +++ b/src/java/org/apache/commons/collections/CollectionUtils.java @@ -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 @@ -81,7 +81,7 @@ import org.apache.commons.collections.iterators.EnumerationIterator; * A set of {@link Collection} related utility methods. * * @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 Paul Jack @@ -289,7 +289,7 @@ public class CollectionUtils { *
  • a.size() and b.size() represent the * total cardinality of a and b, resp.
  • *
  • a.size() < Integer.MAXVALUE
  • - *

    + * * * @see #isSubCollection * @see Collection#containsAll diff --git a/src/java/org/apache/commons/collections/decorators/PredicatedMap.java b/src/java/org/apache/commons/collections/decorators/PredicatedMap.java index 996c3c310..000c83044 100644 --- a/src/java/org/apache/commons/collections/decorators/PredicatedMap.java +++ b/src/java/org/apache/commons/collections/decorators/PredicatedMap.java @@ -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 @@ -69,10 +69,10 @@ import org.apache.commons.collections.Predicate; * to validate that additions match a specified predicate. *

    * If an object cannot be added to the map, an IllegalArgumentException - * is thrown.

    + * is thrown. * * @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 Paul Jack @@ -88,7 +88,7 @@ public class PredicatedMap extends AbstractMapDecorator { * Factory method to create a predicated (validating) map. *

    * If there are any elements already in the list being decorated, they - * are validated.

    + * are validated. * * @param map the map to decorate, must not be null * @param keyPredicate the predicate to validate the keys, null means no check diff --git a/src/java/org/apache/commons/collections/decorators/PredicatedSortedMap.java b/src/java/org/apache/commons/collections/decorators/PredicatedSortedMap.java index 49531d2a5..a02862f9f 100644 --- a/src/java/org/apache/commons/collections/decorators/PredicatedSortedMap.java +++ b/src/java/org/apache/commons/collections/decorators/PredicatedSortedMap.java @@ -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 @@ -67,10 +67,10 @@ import org.apache.commons.collections.Predicate; * to validate that additions match a specified predicate. *

    * If an object cannot be added to the map, an IllegalArgumentException - * is thrown.

    + * is thrown. * * @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 Paul Jack @@ -81,7 +81,7 @@ public class PredicatedSortedMap extends PredicatedMap implements SortedMap { * Factory method to create a predicated (validating) sorted map. *

    * If there are any elements already in the list being decorated, they - * are validated.

    + * are validated. * * @param map the map to decorate, must not be null * @param keyPredicate the predicate to validate the keys, null means no check diff --git a/src/java/org/apache/commons/collections/decorators/TransformedSortedMap.java b/src/java/org/apache/commons/collections/decorators/TransformedSortedMap.java index 505806345..881eb0704 100644 --- a/src/java/org/apache/commons/collections/decorators/TransformedSortedMap.java +++ b/src/java/org/apache/commons/collections/decorators/TransformedSortedMap.java @@ -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 @@ -72,7 +72,7 @@ import org.apache.commons.collections.Transformer; * use the Integer form to remove objects. * * @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 */ @@ -82,7 +82,7 @@ public class TransformedSortedMap extends TransformedMap implements SortedMap { * Factory method to create a transforming sorted map. *

    * If there are any elements already in the map being decorated, they - * are NOT transformed.

    + * are NOT transformed. * * @param map the map to decorate, must not be null * @param keyTransformer the predicate to validate the keys, null means no transformation diff --git a/src/java/org/apache/commons/collections/decorators/UnmodifiableBoundedCollection.java b/src/java/org/apache/commons/collections/decorators/UnmodifiableBoundedCollection.java index 15b4e5b10..61512dc81 100644 --- a/src/java/org/apache/commons/collections/decorators/UnmodifiableBoundedCollection.java +++ b/src/java/org/apache/commons/collections/decorators/UnmodifiableBoundedCollection.java @@ -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 @@ -71,7 +71,7 @@ import org.apache.commons.collections.BoundedCollection; * examining the package scope variables. * * @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 */ @@ -91,7 +91,7 @@ public class UnmodifiableBoundedCollection extends UnmodifiableCollection implem * Factory method to create an unmodifiable bounded collection. *

    * This method is capable of drilling down through up to 1000 other decorators - * to find a suitable BoundedCollection.

    + * to find a suitable BoundedCollection. * * @param coll the BoundedCollection to decorate, must not be null * @throws IllegalArgumentException if bag is null