X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fsrc%2Forg%2Fwamblee%2Fconditions%2FCondition.java;h=b9f8d77c3e536645b0e2aad8bf169de5aa4b1394;hb=5b6b49fbe01397461e67238481c84a62c8ed4bef;hp=98da09ee18e247cfe9fe47d14fc7e6e7560121d3;hpb=a9a399fb3921ce5dca15cf85cd06f523724a7db1;p=utils diff --git a/support/src/org/wamblee/conditions/Condition.java b/support/src/org/wamblee/conditions/Condition.java index 98da09ee..b9f8d77c 100644 --- a/support/src/org/wamblee/conditions/Condition.java +++ b/support/src/org/wamblee/conditions/Condition.java @@ -18,14 +18,14 @@ package org.wamblee.conditions; /** - * Determines if an object matches. + * Determines if an object matches a certain condition. */ public interface Condition { /** - * 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); }