* <code>Validators</code> based off the result.
*/
private void processValidators(FacesContext ctx,
EditableValueHolder editableValueHolder) {
ComponentValidators componentValidators =
ComponentValidators.getValidators(ctx, false);
if (componentValidators != null) {
// process any elements on the stack.
componentValidators.addValidators(ctx, editableValueHolder);
} else {
// no custom handling required, so add the default validators
ComponentValidators.addDefaultValidatorsToComponent(ctx, editableValueHolder);
}