Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / collections / CollectionFilter.java
index 296049fda8d5105a2b3894773397146dd7344b7b..1512303ae47453a236caf87f803c20072e2e9d30 100644 (file)
@@ -19,22 +19,24 @@ import org.wamblee.conditions.Condition;
 
 import java.util.Collection;
 
-
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
 */
+ */
 public class CollectionFilter {
     /**
-     * Filters a collection by adding all elements in the from
-     * collection that satisfy a given condition to the to collection.
-     *
-     * @param <T> Type of contained element.
-     * @param aFrom From container to which the condition is applied.
-     * @param aTo To container to which matching elements are added.
-     * @param aCondition Condition by which elements are matched.
+     * Filters a collection by adding all elements in the from collection that
+     * satisfy a given condition to the to collection.
+     * 
+     * @param <T>
+     *            Type of contained element.
+     * @param aFrom
+     *            From container to which the condition is applied.
+     * @param aTo
+     *            To container to which matching elements are added.
+     * @param aCondition
+     *            Condition by which elements are matched.
      */
     public static <T> void filter(Collection<T> aFrom, Collection<T> aTo,
         Condition<T> aCondition) {