Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / conditions / PropertyRegexCondition.java
index 3aa68b14eb890ceb64debc877595eae2d64323fd..7dd6b04bdc068780bb20bd8f0132057bd373f2e6 100644 (file)
@@ -22,14 +22,12 @@ import java.lang.reflect.InvocationTargetException;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
-
 /**
- * Condition to check whether a given property value matches a certain
- * regular expression.
- *
+ * Condition to check whether a given property value matches a certain regular
+ * expression.
+ * 
  * @author Erik Brakkee
- *
- * @param <T> DOCUMENT ME!
+ * 
  */
 public class PropertyRegexCondition<T> implements Condition<T> {
     /**
@@ -43,34 +41,33 @@ public class PropertyRegexCondition<T> implements Condition<T> {
     private Pattern regex;
 
     /**
-     * Whether or not to convert the value to lowercase before
-     * matching.
+     * Whether or not to convert the value to lowercase before matching.
      */
     private boolean tolower;
 
-/**
+    /**
      * Constructs the condition.
-     * @param aProperty Name of the property to examine.
-     * @param aRegex Regular expression to use.
-     * @param aTolower Whether or not to convert the value to lowercase before matching.
+     * 
+     * @param aProperty
+     *            Name of the property to examine.
+     * @param aRegex
+     *            Regular expression to use.
+     * @param aTolower
+     *            Whether or not to convert the value to lowercase before
+     *            matching.
      */
     public PropertyRegexCondition(String aProperty, String aRegex,
         boolean aTolower) {
-        property     = aProperty;
-        regex        = Pattern.compile(aRegex);
-        tolower      = aTolower;
+        property = aProperty;
+        regex = Pattern.compile(aRegex);
+        tolower = aTolower;
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see org.wamblee.conditions.Condition#matches(T)
      */
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aObject DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     public boolean matches(T aObject) {
         try {
             String value = PropertyUtils.getProperty(aObject, property) + "";