(no commit message)
[utils] / support / general / src / main / java / org / wamblee / conditions / FixedCondition.java
index eff83b1b75d4ffb6e03a58272b87051c90cf89c0..18b8d16ee1e1e79ac854f720da35da041973196f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2005 the original author or authors.
+ * Copyright 2005-2010 the original author or authors.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
-
+ */
 package org.wamblee.conditions;
 
 /**
- * Condition which always returns a fixed value. 
- *
+ * Condition which always returns a fixed value.
+ * 
  * @author Erik Brakkee
+ * 
  */
 public class FixedCondition<T> implements Condition<T> {
-    
-    private boolean _value; 
-    
+    private boolean value;
+
     /**
-     * Constructs the condition. 
-     * @param aValue Fixed value of the condition. 
+     * Constructs the condition.
+     * 
+     * @param aValue
+     *            Fixed value of the condition.
      */
-    public FixedCondition(boolean aValue) { 
-        _value = aValue; 
+    public FixedCondition(boolean aValue) {
+        value = aValue;
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see org.wamblee.conditions.Condition#matches(T)
      */
     public boolean matches(T aObject) {
-        return _value; 
+        return value;
     }
-
 }