Uses of Class
de.knightsoftnet.validators.client.impl.GwtValidationContext
Packages that use GwtValidationContext
-
Uses of GwtValidationContext in de.knightsoftnet.validators.client.impl
Methods in de.knightsoftnet.validators.client.impl that return GwtValidationContextModifier and TypeMethodDescriptionAppend a node named name to the path..GwtValidationContext.appendIndex(String name, int index) Append an indexed node to the path.GwtValidationContext.appendIterable(String name) Append an iterable node to the path.Append a keyed node to the path.Methods in de.knightsoftnet.validators.client.impl with parameters of type GwtValidationContextModifier and TypeMethodDescriptionprotected <V,T, A extends Annotation>
voidAbstractGwtSpecificValidator.addSingleViolation(GwtValidationContext<T> context, Set<javax.validation.ConstraintViolation<T>> violations, G object, V value, ConstraintDescriptorImpl<A> constraintDescriptor) <T> voidGwtSpecificValidator.expandDefaultAndValidateClassGroups(GwtValidationContext<T> context, G object, Set<javax.validation.ConstraintViolation<T>> violations, Group... groups) Helper method used to first expand the Default group sequence and then perform validation of a bean using the specific group(s).<T> voidGwtSpecificValidator.expandDefaultAndValidatePropertyGroups(GwtValidationContext<T> context, G object, String propertyName, Set<javax.validation.ConstraintViolation<T>> violations, Group... groups) Helper method used to first expand the Default group sequence and then perform validation of a bean using the specific group(s).<T> voidGwtSpecificValidator.expandDefaultAndValidateValueGroups(GwtValidationContext<T> context, Class<G> beanType, String propertyName, Object value, Set<javax.validation.ConstraintViolation<T>> violations, Group... groups) Helper method used to first expand the Default group sequence and then perform validation of a bean using the specific group(s).<T> Set<javax.validation.ConstraintViolation<T>>AbstractGwtSpecificValidator.validate(GwtValidationContext<T> context, G object, Class<?>... groups) protected <A extends Annotation,T, V>
booleanAbstractGwtSpecificValidator.validate(GwtValidationContext<T> context, Set<javax.validation.ConstraintViolation<T>> violations, G object, V value, javax.validation.ConstraintValidator<A, ? super V> validator, ConstraintDescriptorImpl<A> constraintDescriptor, Class<?>... groups) Perform the actual validation of a singleConstraintValidator.<T> Set<javax.validation.ConstraintViolation<T>>AbstractGwtValidator.validate(GwtValidationContext<T> context, Object object, Class<?>... groups) Validates all constraints onobject.<T> Set<javax.validation.ConstraintViolation<T>>GwtSpecificValidator.validate(GwtValidationContext<T> context, G object, Class<?>... groups) Validates all constraints onobject.<T> voidGwtSpecificValidator.validateClassGroups(GwtValidationContext<T> context, G object, Set<javax.validation.ConstraintViolation<T>> violations, Class<?>... groups) Helper method used to perform validation of a bean using specific group(s).<T> voidGroupValidator.validateGroups(GwtValidationContext<T> context, Set<javax.validation.ConstraintViolation<T>> violations, Group... groups) Validates the given group(s) (may not include group sequences) and adds any violations to the set.<T> Set<javax.validation.ConstraintViolation<T>>AbstractGwtSpecificValidator.validateProperty(GwtValidationContext<T> context, G object, String propertyName, Class<?>... groups) <T> Set<javax.validation.ConstraintViolation<T>>GwtSpecificValidator.validateProperty(GwtValidationContext<T> context, G object, String propertyName, Class<?>... groups) Validates all constraints placed on the property ofobjectnamedpropertyName.<T> voidGwtSpecificValidator.validatePropertyGroups(GwtValidationContext<T> context, G object, String propertyName, Set<javax.validation.ConstraintViolation<T>> violations, Class<?>... groups) Helper method used to perform validation of a bean property using specific group(s).<T> Set<javax.validation.ConstraintViolation<T>>AbstractGwtSpecificValidator.validateValue(GwtValidationContext<T> context, Class<G> beanType, String propertyName, Object value, Class<?>... groups) <T> Set<javax.validation.ConstraintViolation<T>>GwtSpecificValidator.validateValue(GwtValidationContext<T> context, Class<G> beanType, String propertyName, Object value, Class<?>... groups) Validates all constraints placed on the property namedpropertyNameof the classbeanTypewhere the property value isvalue.<T> voidGwtSpecificValidator.validateValueGroups(GwtValidationContext<T> context, Class<G> beanType, String propertyName, Object value, Set<javax.validation.ConstraintViolation<T>> violations, Class<?>... groups) Helper method used to perform validation of a class property with a specified value using specific group(s).