}
/**
- * 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
// 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