]> git.mxchange.org Git - jcore-utils.git/commitdiff
#Tpyo fixed ...
authorRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 12:41:25 +0000 (14:41 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 12:41:25 +0000 (14:41 +0200)
src/org/mxchange/jcoreee/validator/BaseObjectValidator.java

index 79fc71afa77be61b15bf04f828024b3a8e5e90b8..e35b97e61ad8417a667276d1e2ab7b8e3c94ce41 100644 (file)
@@ -45,8 +45,7 @@ public abstract class BaseObjectValidator implements Validator, Serializable {
         * <p>
         * @param context
         * @param component
-        * @param value
-        * <p>
+        * @param value <p>
         * @throws ValidatorException
         */
        @Override
@@ -58,11 +57,11 @@ public abstract class BaseObjectValidator implements Validator, Serializable {
         * component's id has been found, it stops iteration on requiredFields
         * (which saves execution time).
         * <p>
-        * @param context FacesContext instance
-        * @param component UIComponent instance
-        * @param value Value to check
+        * @param context        FacesContext instance
+        * @param component      UIComponent instance
+        * @param value          Value to check
         * @param requiredFields Array of required field names (ending with)
-        * @param allowNull Wether null or empty values are allowed
+        * @param allowNull      Wether null or empty values are allowed
         * <p>
         * @throws ValidatorException If something more horrible went wrong
         */
@@ -102,14 +101,16 @@ public abstract class BaseObjectValidator implements Validator, Serializable {
 
                // Debug message
                //this.getLogger().logDebug(MessageFormat.format("preValidate: isValidField={0}", isValidField)); //NOI18N
+
                // Valid field?
                if (!isValidField) {
                        // Invalid field
-                       facesMessage = new FacesMessage(MessageFormat.format("Valure {0} for clientId={1} is not valid/unexpected.", value, clientId)); //NOI18N
+                       facesMessage = new FacesMessage(MessageFormat.format("Value {0} for clientId={1} is not valid/unexpected.", value, clientId)); //NOI18N
                }
 
                // Debug message
                //this.getLogger().logDebug(MessageFormat.format("preValidate: facesMessage={0}", facesMessage)); //NOI18N
+
                // Is it not null?
                if (null != facesMessage) {
                        throw new ValidatorException(facesMessage);
@@ -118,4 +119,5 @@ public abstract class BaseObjectValidator implements Validator, Serializable {
                // Trace message
                //this.getLogger().logTrace("preValidate: EXIT!"); //NOI18N
        }
+
 }