Uses of Interface
org.apache.tapestry5.FieldValidator
-
Packages that use FieldValidator Package Description org.apache.tapestry5 Root package for Tapestry, containing common interfaces and data types used throughout the framework.org.apache.tapestry5.corelib.pages The set of core pages available in all Tapestry applicationsorg.apache.tapestry5.internal.beanvalidator [INTERNAL USE ONLY] JSR-303 Bean Validation implementation details; API subject to changeorg.apache.tapestry5.internal.services [INTERNAL USE ONLY] internal service classes; API subject to changeorg.apache.tapestry5.services Core servicesorg.apache.tapestry5.test Support for testing Tapestry pages -
-
Uses of FieldValidator in org.apache.tapestry5
Methods in org.apache.tapestry5 with parameters of type FieldValidator Modifier and Type Method Description void
FieldValidationSupport. validate(Object value, ComponentResources componentResources, FieldValidator validator)
Performs validation on a parsed value from the client. -
Uses of FieldValidator in org.apache.tapestry5.corelib.pages
Methods in org.apache.tapestry5.corelib.pages that return FieldValidator Modifier and Type Method Description FieldValidator
PropertyEditBlocks. getCalendarFieldValidator()
FieldValidator
PropertyEditBlocks. getDateFieldValidator()
FieldValidator
PropertyEditBlocks. getNumberFieldValidator()
FieldValidator
PropertyEditBlocks. getPasswordFieldValidator()
FieldValidator
PropertyEditBlocks. getSelectValidator()
FieldValidator
PropertyEditBlocks. getTextAreaValidator()
FieldValidator
PropertyEditBlocks. getTextFieldValidator()
-
Uses of FieldValidator in org.apache.tapestry5.internal.beanvalidator
Classes in org.apache.tapestry5.internal.beanvalidator that implement FieldValidator Modifier and Type Class Description class
BeanFieldValidator
Methods in org.apache.tapestry5.internal.beanvalidator that return FieldValidator Modifier and Type Method Description FieldValidator
BeanFieldValidatorDefaultSource. createDefaultValidator(ComponentResources resources, String parameterName)
FieldValidator
BeanFieldValidatorDefaultSource. createDefaultValidator(Field field, String overrideId, Messages overrideMessages, Locale locale, Class propertyType, AnnotationProvider propertyAnnotations)
-
Uses of FieldValidator in org.apache.tapestry5.internal.services
Classes in org.apache.tapestry5.internal.services that implement FieldValidator Modifier and Type Class Description class
CompositeFieldValidator
Aggregates together a number of field validator instances as a single unit.class
FieldValidatorImpl
Methods in org.apache.tapestry5.internal.services that return FieldValidator Modifier and Type Method Description FieldValidator
FieldValidatorDefaultSourceImpl. createDefaultValidator(ComponentResources resources, String parameterName)
FieldValidator
FieldValidatorDefaultSourceImpl. createDefaultValidator(Field field, String overrideId, Messages overrideMessages, Locale locale, Class propertyType, AnnotationProvider propertyAnnotations)
FieldValidator
FieldValidatorSourceImpl. createValidator(Field field, String validatorType, String constraintValue)
FieldValidator
FieldValidatorSourceImpl. createValidator(Field field, String validatorType, String constraintValue, String overrideId, Messages overrideMessages, Locale locale)
FieldValidator
FieldValidatorSourceImpl. createValidators(Field field, String specification)
FieldValidator
ComponentDefaultProviderImpl. defaultValidator(String parameterName, ComponentResources resources)
Methods in org.apache.tapestry5.internal.services with parameters of type FieldValidator Modifier and Type Method Description void
FieldValidationSupportImpl. validate(Object value, ComponentResources componentResources, FieldValidator validator)
Constructor parameters in org.apache.tapestry5.internal.services with type arguments of type FieldValidator Constructor Description CompositeFieldValidator(List<FieldValidator> validators)
-
Uses of FieldValidator in org.apache.tapestry5.services
Methods in org.apache.tapestry5.services that return FieldValidator Modifier and Type Method Description FieldValidator
FieldValidatorDefaultSource. createDefaultValidator(ComponentResources resources, String parameterName)
A convenience for the full version; assumes that the resources are associated with aField
.FieldValidator
FieldValidatorDefaultSource. createDefaultValidator(Field field, String overrideId, Messages overrideMessages, Locale locale, Class propertyType, AnnotationProvider propertyAnnotations)
Analyzes the property type and property annotations to determine the default set of validations for the property, which are wrapped to form aFieldValidator
for a field.FieldValidator
FieldValidatorSource. createValidator(Field field, String validatorType, String constraintValue)
Creates the validator.FieldValidator
FieldValidatorSource. createValidator(Field field, String validatorType, String constraintValue, String overrideId, Messages overrideMessages, Locale locale)
Full featured version ofFieldValidatorSource.createValidator(Field, String, String)
used in situations where the container of the field is not necessarily the place to look for override messages, and the id of the field is not the key to use when checking.FieldValidator
FieldValidatorSource. createValidators(Field field, String specification)
Creates a set of validators.FieldValidator
ComponentDefaultProvider. defaultValidator(String parameterName, ComponentResources resources)
FieldValidator
PropertyEditContext. getValidator(Field field)
Returns the FieldValidator for the field. -
Uses of FieldValidator in org.apache.tapestry5.test
Methods in org.apache.tapestry5.test that return FieldValidator Modifier and Type Method Description protected FieldValidator
TapestryTestCase. mockFieldValidator()
Methods in org.apache.tapestry5.test with parameters of type FieldValidator Modifier and Type Method Description protected void
TapestryTestCase. train_createValidator(FieldValidatorSource source, Field field, String validatorType, String constraintValue, String overrideId, Messages overrideMessages, Locale locale, FieldValidator result)
-