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:29:40 UTC

svn commit: r1353156 - in /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections: Buffer.java Closure.java Factory.java MultiMap.java

Author: tn
Date: Sat Jun 23 16:29:39 2012
New Revision: 1353156

URL: http://svn.apache.org/viewvc?rev=1353156&view=rev
Log:
Fixed javadoc (closing paragraph elements).

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Buffer.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Closure.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Factory.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Buffer.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Buffer.java?rev=1353156&r1=1353155&r2=1353156&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Buffer.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Buffer.java Sat Jun 23 16:29:39 2012
@@ -23,17 +23,17 @@ import java.util.Collection;
  * <p>
  * The removal order can be based on insertion order (eg, a FIFO queue or a
  * LIFO stack), on access order (eg, an LRU cache), on some arbitrary comparator
- * (eg, a priority queue) or on any other well-defined ordering.
+ * (eg, a priority queue) or on any other well-defined ordering.</p>
  * <p>
  * Note that the removal order is not necessarily the same as the iteration
  * order.  A <code>Buffer</code> implementation may have equivalent removal
- * and iteration orders, but this is not required.
+ * and iteration orders, but this is not required.</p>
  * <p>
  * This interface does not specify any behavior for 
  * {@link Object#equals(Object)} and {@link Object#hashCode} methods.  It
  * is therefore possible for a <code>Buffer</code> implementation to also
  * also implement {@link java.util.List}, {@link java.util.Set} or 
- * {@link Bag}.
+ * {@link Bag}.</p>
  *
  * @param <E> the type of the elements in the buffer
  * @since Commons Collections 2.1

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Closure.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Closure.java?rev=1353156&r1=1353155&r2=1353156&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Closure.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Closure.java Sat Jun 23 16:29:39 2012
@@ -20,10 +20,10 @@ package org.apache.commons.collections;
  * Defines a functor interface implemented by classes that do something.
  * <p>
  * A <code>Closure</code> represents a block of code which is executed from
- * inside some block, function or iteration. It operates an input object.
+ * inside some block, function or iteration. It operates an input object.</p>
  * <p>
  * Standard implementations of common closures are provided by
- * {@link ClosureUtils}. These include method invokation and for/while loops.
+ * {@link ClosureUtils}. These include method invocation and for/while loops.</p>
  *
  * @param <T> the type that the closure acts on
  * @since Commons Collections 1.0

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Factory.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Factory.java?rev=1353156&r1=1353155&r2=1353156&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Factory.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/Factory.java Sat Jun 23 16:29:39 2012
@@ -20,11 +20,11 @@ package org.apache.commons.collections;
  * Defines a functor interface implemented by classes that create objects.
  * <p>
  * A <code>Factory</code> creates an object without using an input parameter.
- * If an input parameter is required, then {@link Transformer} is more appropriate.
+ * If an input parameter is required, then {@link Transformer} is more appropriate.</p>
  * <p>
  * Standard implementations of common factories are provided by
  * {@link FactoryUtils}. These include factories that return a constant,
- * a copy of a prototype or a new instance.
+ * a copy of a prototype or a new instance.</p>
  *
  * @param <T> the type that the factory creates
  *

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java?rev=1353156&r1=1353155&r2=1353156&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java Sat Jun 23 16:29:39 2012
@@ -23,7 +23,7 @@ import java.util.Collection;
  * <p>
  * A <code>MultiMap</code> is a Map with slightly different semantics.
  * Putting a value into the map will add the value to a Collection at that key.
- * Getting a value will return a Collection, holding all the values put to that key.
+ * Getting a value will return a Collection, holding all the values put to that key.</p>
  * <p>
  * For example:
  * <pre>
@@ -31,13 +31,13 @@ import java.util.Collection;
  * mhm.put(key, "A");
  * mhm.put(key, "B");
  * mhm.put(key, "C");
- * Collection coll = (Collection) mhm.get(key);</pre>
+ * Collection coll = (Collection) mhm.get(key);</pre></p>
  * <p>
- * <code>coll</code> will be a collection containing "A", "B", "C".
+ * <code>coll</code> will be a collection containing "A", "B", "C".</p>
  * <p>
  * NOTE: Additional methods were added to this interface in Commons Collections 3.1.
  * These were added solely for documentation purposes and do not change the interface
- * as they were defined in the superinterface <code>Map</code> anyway.
+ * as they were defined in the superinterface <code>Map</code> anyway.</p>
  *
  * @since Commons Collections 2.0
  * @version $Revision$