X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fcollections%2FCollectionFilter.java;h=1512303ae47453a236caf87f803c20072e2e9d30;hb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;hp=296049fda8d5105a2b3894773397146dd7344b7b;hpb=89c06d4d52b46c154128c97d6e758fa1f4fc7a6e;p=utils diff --git a/support/general/src/main/java/org/wamblee/collections/CollectionFilter.java b/support/general/src/main/java/org/wamblee/collections/CollectionFilter.java index 296049fd..1512303a 100644 --- a/support/general/src/main/java/org/wamblee/collections/CollectionFilter.java +++ b/support/general/src/main/java/org/wamblee/collections/CollectionFilter.java @@ -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 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 + * 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 void filter(Collection aFrom, Collection aTo, Condition aCondition) {