]> git.mxchange.org Git - jcore-utils.git/commitdiff
Declared what the method is actually doing.
authorRoland Haeder <roland@mxchange.org>
Sat, 5 Sep 2015 13:14:02 +0000 (15:14 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 5 Sep 2015 13:14:02 +0000 (15:14 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcoreee/validator/BaseObjectValidator.java

index ca021aa62a6feff804be33f1987e0722f10fd665..d1eb11522e7ba4fe432553280729de6d4a0239c9 100644 (file)
@@ -61,7 +61,9 @@ public abstract class BaseObjectValidator extends BaseFrameworkSystem implements
        }
 
        /**
-        * Pre-validation of value, e.g. not null
+        * The method pre-validates the given value. It makes sure that the component's id is found in
+        * requiredFields and is not null. Once the component's id has been found, it stops iteration on
+        * requiredFields (which saves execution time).
         *
         * @param context FacesContext instance
         * @param component UIComponent instance
@@ -86,6 +88,7 @@ public abstract class BaseObjectValidator extends BaseFrameworkSystem implements
                // Default is no field is valid
                boolean isValidField = false;
 
+               // Check component's id against required fields and find a match
                for (final String field : requiredFields) {
                        // Get logger
                        this.getLogger().debug(MessageFormat.format("field={0},clientId={1}", field, clientId)); //NOI18N