updated coding rules.
[utils] / support / general / src / main / java / org / wamblee / conditions / PropertyRegexCondition.java
index 2ce7a0e9700196116f1c74fc56c0a7fefdb361e9..cfc1e1655784c203699f2d4d6b10f71082cf0b39 100644 (file)
@@ -33,17 +33,17 @@ public class PropertyRegexCondition<T> implements Condition<T> {
     /**
      * Property name. 
      */
-    private String _property;
+    private String property;
     
     /**
      * Regular expression. 
      */
-    private Pattern _regex;
+    private Pattern regex;
     
     /**
      * Whether or not to convert the value to lowercase before matching. 
      */
-    private boolean _tolower; 
+    private boolean tolower; 
     
     /**
      * Constructs the condition. 
@@ -52,9 +52,9 @@ public class PropertyRegexCondition<T> implements Condition<T> {
      * @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)
@@ -62,11 +62,11 @@ public class PropertyRegexCondition<T> implements Condition<T> {
      */
     public boolean matches(T aObject) {
         try {
-            String value = PropertyUtils.getProperty(aObject, _property) + "";
-            if ( _tolower ) { 
+            String value = PropertyUtils.getProperty(aObject, property) + "";
+            if ( tolower ) { 
                 value = value.toLowerCase(); 
             }
-            Matcher matcher = _regex.matcher(value); 
+            Matcher matcher = regex.matcher(value); 
             return matcher.matches(); 
         } catch (IllegalAccessException e) {
             throw new RuntimeException(e.getMessage(), e);