Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / conditions / FixedCondition.java
index 1c64974cdb38f2fc8d9d50ba1fdf59ace5538401..92f9be57552f77af2ead39ab6835fef638839f60 100644 (file)
@@ -17,35 +17,28 @@ package org.wamblee.conditions;
 
 /**
  * Condition which always returns a fixed value.
- *
+ * 
  * @author Erik Brakkee
- *
- * @param <T> DOCUMENT ME!
+ * 
  */
 public class FixedCondition<T> implements Condition<T> {
-    /**
-     * DOCUMENT ME!
-     */
     private boolean value;
 
-/**
+    /**
      * Constructs the condition.
-     * @param aValue Fixed value of the condition.
+     * 
+     * @param aValue
+     *            Fixed value of the condition.
      */
     public FixedCondition(boolean aValue) {
         value = aValue;
     }
 
-    /* (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) {
         return value;
     }