From: Roland Haeder Date: Sat, 5 Sep 2015 13:14:02 +0000 (+0200) Subject: Declared what the method is actually doing. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d593ff66c32f3a11d52a672bd76734588aeaf87c;p=jcore-utils.git Declared what the method is actually doing. Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java b/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java index ca021aa..d1eb115 100644 --- a/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java +++ b/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java @@ -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