You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ps...@apache.org on 2003/09/07 17:09:34 UTC

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/decorators PredicatedMap.java PredicatedSortedMap.java TransformedSortedMap.java UnmodifiableBoundedCollection.java

psteitz     2003/09/07 08:09:34

  Modified:    collections/src/java/org/apache/commons/collections
                        CollectionUtils.java
               collections/src/java/org/apache/commons/collections/decorators
                        PredicatedMap.java PredicatedSortedMap.java
                        TransformedSortedMap.java
                        UnmodifiableBoundedCollection.java
  Log:
  Reverted to [collections] javadoc style
  
  Revision  Changes    Path
  1.38      +3 -3      jakarta-commons/collections/src/java/org/apache/commons/collections/CollectionUtils.java
  
  Index: CollectionUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/CollectionUtils.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- CollectionUtils.java	7 Sep 2003 08:45:16 -0000	1.37
  +++ CollectionUtils.java	7 Sep 2003 15:09:34 -0000	1.38
  @@ -289,7 +289,7 @@
        *    <li><code>a.size()</code> and <code>b.size()</code> represent the 
        *    total cardinality of <i>a</i> and <i>b</i>, resp. </li>
        *    <li><code>a.size() < Integer.MAXVALUE</code></li>
  -     * </ul></p>
  +     * </ul>
        *
        * @see #isSubCollection
        * @see Collection#containsAll
  
  
  
  1.6       +4 -4      jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/PredicatedMap.java
  
  Index: PredicatedMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/PredicatedMap.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- PredicatedMap.java	5 Sep 2003 03:35:07 -0000	1.5
  +++ PredicatedMap.java	7 Sep 2003 15:09:34 -0000	1.6
  @@ -69,7 +69,7 @@
    * to validate that additions match a specified predicate.
    * <p>
    * If an object cannot be added to the map, an IllegalArgumentException
  - * is thrown.</p>
  + * is thrown.
    *
    * @since Commons Collections 3.0
    * @version $Revision$ $Date$
  @@ -88,7 +88,7 @@
        * Factory method to create a predicated (validating) map.
        * <p>
        * 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 keyPredicate  the predicate to validate the keys, null means no check
  
  
  
  1.5       +4 -4      jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/PredicatedSortedMap.java
  
  Index: PredicatedSortedMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/PredicatedSortedMap.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PredicatedSortedMap.java	5 Sep 2003 03:35:07 -0000	1.4
  +++ PredicatedSortedMap.java	7 Sep 2003 15:09:34 -0000	1.5
  @@ -67,7 +67,7 @@
    * to validate that additions match a specified predicate.
    * <p>
    * If an object cannot be added to the map, an IllegalArgumentException
  - * is thrown.</p>
  + * is thrown.
    *
    * @since Commons Collections 3.0
    * @version $Revision$ $Date$
  @@ -81,7 +81,7 @@
        * Factory method to create a predicated (validating) sorted map.
        * <p>
        * 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 keyPredicate  the predicate to validate the keys, null means no check
  
  
  
  1.4       +3 -3      jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/TransformedSortedMap.java
  
  Index: TransformedSortedMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/TransformedSortedMap.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TransformedSortedMap.java	5 Sep 2003 03:35:07 -0000	1.3
  +++ TransformedSortedMap.java	7 Sep 2003 15:09:34 -0000	1.4
  @@ -82,7 +82,7 @@
        * Factory method to create a transforming sorted map.
        * <p>
        * 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 keyTransformer  the predicate to validate the keys, null means no transformation
  
  
  
  1.4       +3 -3      jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/UnmodifiableBoundedCollection.java
  
  Index: UnmodifiableBoundedCollection.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/decorators/UnmodifiableBoundedCollection.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UnmodifiableBoundedCollection.java	5 Sep 2003 03:35:07 -0000	1.3
  +++ UnmodifiableBoundedCollection.java	7 Sep 2003 15:09:34 -0000	1.4
  @@ -91,7 +91,7 @@
        * Factory method to create an unmodifiable bounded collection.
        * <p>
        * 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
        * @throws IllegalArgumentException if bag is null