You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/04/19 00:47:06 UTC

svn commit: r1094802 - /commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/GenericValidatorImpl.java

Author: sebb
Date: Mon Apr 18 22:47:06 2011
New Revision: 1094802

URL: http://svn.apache.org/viewvc?rev=1094802&view=rev
Log:
Javadoc

Modified:
    commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/GenericValidatorImpl.java

Modified: commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/GenericValidatorImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/GenericValidatorImpl.java?rev=1094802&r1=1094801&r2=1094802&view=diff
==============================================================================
--- commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/GenericValidatorImpl.java (original)
+++ commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/GenericValidatorImpl.java Mon Apr 18 22:47:06 2011
@@ -72,7 +72,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field can be successfully converted to a <code>byte</code>.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field can be successfully converted 
     *                           to a <code>byte</code> <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.
@@ -86,7 +87,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field can be successfully converted to a <code>short</code>.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field can be successfully converted 
     *                           to a <code>short</code> <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.
@@ -100,7 +102,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field can be successfully converted to a <code>int</code>.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field can be successfully converted 
     *                           to a <code>int</code> <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.
@@ -114,7 +117,7 @@ public class GenericValidatorImpl {
    /**
     * Checks if field is positive assuming it is an integer
     * 
-    * @param    value       The value validation is being performed on.
+    * @param    bean       The value validation is being performed on.
     * @param    field       Description of the field to be evaluated
     * @return   boolean     If the integer field is greater than zero, returns
     *                        true, otherwise returns false.
@@ -128,7 +131,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field can be successfully converted to a <code>long</code>.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field can be successfully converted 
     *                           to a <code>long</code> <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.
@@ -142,7 +146,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field can be successfully converted to a <code>float</code>.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field can be successfully converted 
     *                           to a <code>float</code> <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.
@@ -156,7 +161,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field can be successfully converted to a <code>double</code>.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field can be successfully converted 
     *                           to a <code>double</code> <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.
@@ -170,7 +176,8 @@ public class GenericValidatorImpl {
    /**
     * Checks if the field is an e-mail address.
     *
-    * @param     value         The value validation is being performed on.
+    * @param bean The value validation is being performed on.
+    * @param field the field to use
     * @return    boolean        If the field is an e-mail address
     *                           <code>true</code> is returned.  
     *                           Otherwise <code>false</code>.