(no commit message)
[utils] / support / src / org / wamblee / conditions / PropertyRegexCondition.java
index 48df7995cd0222547b7a52a8c6dbb4acb6f843d0..60726dcc540b205f012e7baf79c3410bfbda1c63 100644 (file)
@@ -38,14 +38,21 @@ public class PropertyRegexCondition<T> implements Condition<T> {
      */
     private Pattern _regex;
     
+    /**
+     * 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. 
      */
-    public PropertyRegexCondition(String aProperty, String aRegex) {
+    public PropertyRegexCondition(String aProperty, String aRegex, boolean aTolower) {
         _property = aProperty;
         _regex = Pattern.compile(aRegex);
+        _tolower = aTolower;
     }
 
     /* (non-Javadoc)
@@ -54,6 +61,9 @@ public class PropertyRegexCondition<T> implements Condition<T> {
     public boolean matches(T aObject) {
         try {
             String value = PropertyUtils.getProperty(aObject, _property) + "";
+            if ( _tolower ) { 
+                value = value.toLowerCase(); 
+            }
             Matcher matcher = _regex.matcher(value); 
             return matcher.matches(); 
         } catch (IllegalAccessException e) {