@Override
protected Validator createValidator() throws JspException
{
String validatorId = RegExpValidator.VALIDATOR_ID;
Application appl = FacesContext.getCurrentInstance().getApplication();
RegExpValidator validator = (RegExpValidator)appl.createValidator(validatorId);
_setProperties(validator);
return validator;
}