36373839404142
public NotEmptyRuleElementHandler(String namespaceUri) { super(ELEMENT_NAME, namespaceUri); } protected AbstractValidationRule createValidationRule(Element element) { return new NotEmptyValidationRule(); }
34353637383940
public NotEmptyValidationAnnotationHandler() { super(NotEmpty.class); } protected AbstractValidationRule createValidationRule(Annotation annotation, Class clazz, String propertyName) { return new NotEmptyValidationRule(); }