(no commit message)
[utils] / support / src / org / wamblee / conditions / Condition.java
index 98da09ee18e247cfe9fe47d14fc7e6e7560121d3..b9f8d77c3e536645b0e2aad8bf169de5aa4b1394 100644 (file)
@@ -18,14 +18,14 @@ package org.wamblee.conditions;
 
 
 /**
- * Determines if an object matches.
+ * Determines if an object matches a certain condition.
  */
 public interface Condition<T> {
 
     /**
-     * Determines if a program matches
-     * @param aProgram Program to match. 
-     * @return True iff the program matches. 
+     * Determines if an object matches a condition
+     * @param aObject object to match. 
+     * @return True iff the object matches. 
      */
     boolean matches(T aObject); 
 }