You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/06/23 18:58:28 UTC

svn commit: r1353162 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/

Author: tn
Date: Sat Jun 23 16:58:25 2012
New Revision: 1353162

URL: http://svn.apache.org/viewvc?rev=1353162&view=rev
Log:
Remove again closing unneeded closing p tags to keep consistency.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractBagDecorator.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractMapBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractSortedBagDecorator.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/HashBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedSortedBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedSortedBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedSortedBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractBagDecorator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractBagDecorator.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractBagDecorator.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractBagDecorator.java Sat Jun 23 16:58:25 2012
@@ -24,7 +24,7 @@ import org.apache.commons.collections.co
 /**
  * Decorates another <code>Bag</code> to provide additional behaviour.
  * <p>
- * Methods are forwarded directly to the decorated bag.</p>
+ * Methods are forwarded directly to the decorated bag.
  *
  * @since Commons Collections 3.0
  * @version $Revision$

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractMapBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractMapBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractMapBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractMapBag.java Sat Jun 23 16:58:25 2012
@@ -35,7 +35,7 @@ import org.apache.commons.collections.se
  * <p>
  * Subclasses specify a Map implementation to use as the internal storage. The
  * map will be used to map bag elements to a number; the number represents the
- * number of occurrences of that element in the bag.</p>
+ * number of occurrences of that element in the bag.
  *
  * @since Commons Collections 3.0 (previously DefaultMapBag v2.0)
  * @version $Revision$

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractSortedBagDecorator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractSortedBagDecorator.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractSortedBagDecorator.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/AbstractSortedBagDecorator.java Sat Jun 23 16:58:25 2012
@@ -23,7 +23,7 @@ import org.apache.commons.collections.So
 /**
  * Decorates another <code>SortedBag</code> to provide additional behaviour.
  * <p>
- * Methods are forwarded directly to the decorated bag.</p>
+ * Methods are forwarded directly to the decorated bag.
  *
  * @since Commons Collections 3.0
  * @version $Revision$

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/HashBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/HashBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/HashBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/HashBag.java Sat Jun 23 16:58:25 2012
@@ -33,7 +33,7 @@ import org.apache.commons.collections.Ba
  * count of occurrences. Extra methods on the interface allow multiple copies
  * of an object to be added or removed at once. It is important to read the
  * interface javadoc carefully as several methods violate the
- * <code>Collection</code> interface specification.</p>
+ * <code>Collection</code> interface specification.
  *
  * @since Commons Collections 3.0 (previously in main package v2.0)
  * @version $Revision$

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedBag.java Sat Jun 23 16:58:25 2012
@@ -28,12 +28,12 @@ import org.apache.commons.collections.co
  * <p>
  * This bag exists to provide validation for the decorated bag.
  * It is normally created to decorate an empty bag.
- * If an object cannot be added to the bag, an IllegalArgumentException is thrown.</p>
+ * If an object cannot be added to the bag, an IllegalArgumentException is thrown.
  * <p>
  * One usage would be to ensure that no null entries are added to the bag.
- * <pre>Bag bag = PredicatedBag.decorate(new HashBag(), NotNullPredicate.INSTANCE);</pre></p>
+ * <pre>Bag bag = PredicatedBag.decorate(new HashBag(), NotNullPredicate.INSTANCE);</pre>
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  *
  * @since Commons Collections 3.0
  * @version $Revision$
@@ -51,7 +51,7 @@ public class PredicatedBag<E>
      * Factory method to create a predicated (validating) bag.
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are validated.</p>
+     * are validated.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null
@@ -69,7 +69,7 @@ public class PredicatedBag<E>
      * Constructor that wraps (not copies).
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are validated.</p>
+     * are validated.
      * 
      * @param bag  the bag to decorate, must not be null
      * @param predicate  the predicate to use for validation, must not be null

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedSortedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedSortedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedSortedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/PredicatedSortedBag.java Sat Jun 23 16:58:25 2012
@@ -27,12 +27,12 @@ import org.apache.commons.collections.So
  * <p>
  * This bag exists to provide validation for the decorated bag.
  * It is normally created to decorate an empty bag.
- * If an object cannot be added to the bag, an IllegalArgumentException is thrown.</p>
+ * If an object cannot be added to the bag, an IllegalArgumentException is thrown.
  * <p>
  * One usage would be to ensure that no null entries are added to the bag.
- * <pre>SortedBag bag = PredicatedSortedBag.decorate(new TreeBag(), NotNullPredicate.INSTANCE);</pre></p>
+ * <pre>SortedBag bag = PredicatedSortedBag.decorate(new TreeBag(), NotNullPredicate.INSTANCE);</pre>
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  *
  * @since Commons Collections 3.0
  * @version $Revision$
@@ -50,7 +50,7 @@ public class PredicatedSortedBag<E>
      * Factory method to create a predicated (validating) bag.
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are validated.</p>
+     * are validated.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null
@@ -67,7 +67,7 @@ public class PredicatedSortedBag<E>
     /**
      * Constructor that wraps (not copies).
      * <p>If there are any elements already in the bag being decorated, they
-     * are validated.</p>
+     * are validated.
      * 
      * @param bag  the bag to decorate, must not be null
      * @param predicate  the predicate to use for validation, must not be null

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedBag.java Sat Jun 23 16:58:25 2012
@@ -27,9 +27,9 @@ import org.apache.commons.collections.se
  * for a multi-threaded environment.
  * <p>
  * Methods are synchronized, then forwarded to the decorated bag.
- * Iterators must be separately synchronized around the loop.</p>
+ * Iterators must be separately synchronized around the loop.
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  *
  * @since Commons Collections 3.0
  * @version $Revision$

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedSortedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedSortedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedSortedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/SynchronizedSortedBag.java Sat Jun 23 16:58:25 2012
@@ -26,9 +26,9 @@ import org.apache.commons.collections.So
  * for a multi-threaded environment.
  * <p>
  * Methods are synchronized, then forwarded to the decorated bag.
- * Iterators must be separately synchronized around the loop.</p>
+ * Iterators must be separately synchronized around the loop.
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  *
  * @since Commons Collections 3.0
  * @version $Revision$

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedBag.java Sat Jun 23 16:58:25 2012
@@ -29,9 +29,9 @@ import org.apache.commons.collections.se
  * The add methods are affected by this class.
  * Thus objects must be removed or searched for using their transformed form.
  * For example, if the transformation converts Strings to Integers, you must
- * use the Integer form to remove objects.</p>
+ * use the Integer form to remove objects.
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  *
  * @since Commons Collections 3.0
  * @version $Revision$
@@ -48,7 +48,7 @@ public class TransformedBag<E>
      * Factory method to create a transforming bag.
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are NOT transformed. Contrast this with {@link #transformedBag(Bag, Transformer)}.</p>
+     * are NOT transformed. Contrast this with {@link #transformedBag(Bag, Transformer)}.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null
@@ -66,7 +66,7 @@ public class TransformedBag<E>
      * <p>
      * If there are any elements already in the bag being decorated, they
      * will be transformed by this method.
-     * Contrast this with {@link #transformingBag(Bag, Transformer)}.</p>
+     * Contrast this with {@link #transformingBag(Bag, Transformer)}.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null
@@ -93,7 +93,7 @@ public class TransformedBag<E>
      * Constructor that wraps (not copies).
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are NOT transformed.</p>
+     * are NOT transformed.
      * 
      * @param bag  the bag to decorate, must not be null
      * @param transformer  the transformer to use for conversion, must not be null

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedSortedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedSortedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedSortedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/TransformedSortedBag.java Sat Jun 23 16:58:25 2012
@@ -27,9 +27,9 @@ import org.apache.commons.collections.Tr
  * The add methods are affected by this class.
  * Thus objects must be removed or searched for using their transformed form.
  * For example, if the transformation converts Strings to Integers, you must
- * use the Integer form to remove objects.</p>
+ * use the Integer form to remove objects.
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  *
  * @since Commons Collections 3.0
  * @version $Revision$
@@ -46,7 +46,7 @@ public class TransformedSortedBag<E>
      * Factory method to create a transforming sorted bag.
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are NOT transformed. Contrast this with {@link #transformedSortedBag(SortedBag, Transformer)}.</p>
+     * are NOT transformed. Contrast this with {@link #transformedSortedBag(SortedBag, Transformer)}.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null
@@ -65,7 +65,7 @@ public class TransformedSortedBag<E>
      * <p>
      * If there are any elements already in the bag being decorated, they
      * will be transformed by this method.
-     * Contrast this with {@link #transformingSortedBag(SortedBag, Transformer)}.</p>
+     * Contrast this with {@link #transformingSortedBag(SortedBag, Transformer)}.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null
@@ -93,7 +93,7 @@ public class TransformedSortedBag<E>
      * Constructor that wraps (not copies).
      * <p>
      * If there are any elements already in the bag being decorated, they
-     * are NOT transformed.</p>
+     * are NOT transformed.
      * 
      * @param bag  the bag to decorate, must not be null
      * @param transformer  the transformer to use for conversion, must not be null

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java Sat Jun 23 16:58:25 2012
@@ -32,9 +32,9 @@ import org.apache.commons.collections.se
 /**
  * Decorates another <code>Bag</code> to ensure it can't be altered.
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  * <p>
- * Attempts to modify it will result in an UnsupportedOperationException.</p> 
+ * Attempts to modify it will result in an UnsupportedOperationException. 
  *
  * @since Commons Collections 3.0
  * @version $Revision$
@@ -50,7 +50,7 @@ public final class UnmodifiableBag<E>
     /**
      * Factory method to create an unmodifiable bag.
      * <p>
-     * If the bag passed in is already unmodifiable, it is returned.</p>
+     * If the bag passed in is already unmodifiable, it is returned.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java?rev=1353162&r1=1353161&r2=1353162&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java Sat Jun 23 16:58:25 2012
@@ -32,9 +32,9 @@ import org.apache.commons.collections.se
 /**
  * Decorates another <code>SortedBag</code> to ensure it can't be altered.
  * <p>
- * This class is Serializable from Commons Collections 3.1.</p>
+ * This class is Serializable from Commons Collections 3.1.
  * <p>
- * Attempts to modify it will result in an UnsupportedOperationException.</p> 
+ * Attempts to modify it will result in an UnsupportedOperationException. 
  *
  * @since Commons Collections 3.0
  * @version $Revision$
@@ -50,7 +50,7 @@ public final class UnmodifiableSortedBag
     /**
      * Factory method to create an unmodifiable bag.
      * <p>
-     * If the bag passed in is already unmodifiable, it is returned.</p>
+     * If the bag passed in is already unmodifiable, it is returned.
      * 
      * @param <E> the type of the elements in the bag
      * @param bag  the bag to decorate, must not be null