Class FieldValidatorDefaultSourceImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.FieldValidatorDefaultSourceImpl
-
- All Implemented Interfaces:
FieldValidatorDefaultSource
public class FieldValidatorDefaultSourceImpl extends java.lang.Object implements FieldValidatorDefaultSource
-
-
Constructor Summary
Constructors Constructor Description FieldValidatorDefaultSourceImpl(ValidationConstraintGenerator validationConstraintGenerator, FieldValidatorSource fieldValidatorSource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldValidator
createDefaultValidator(ComponentResources resources, java.lang.String parameterName)
A convenience for the full version; assumes that the resources are associated with aField
.FieldValidator
createDefaultValidator(Field field, java.lang.String overrideId, Messages overrideMessages, java.util.Locale locale, java.lang.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.
-
-
-
Constructor Detail
-
FieldValidatorDefaultSourceImpl
public FieldValidatorDefaultSourceImpl(ValidationConstraintGenerator validationConstraintGenerator, FieldValidatorSource fieldValidatorSource)
-
-
Method Detail
-
createDefaultValidator
public FieldValidator createDefaultValidator(Field field, java.lang.String overrideId, Messages overrideMessages, java.util.Locale locale, java.lang.Class propertyType, AnnotationProvider propertyAnnotations)
Description copied from interface:FieldValidatorDefaultSource
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.- Specified by:
createDefaultValidator
in interfaceFieldValidatorDefaultSource
- Parameters:
field
- Field component for which a validator is being createdoverrideId
- the id of the component, used to locate related messages for labels and errorsoverrideMessages
- where to search for label and error messageslocale
- locale used for locating messagespropertyType
- type of property bound to the editting parameter of the field (typically, the parameter named "value").propertyAnnotations
- source of annotations for the property being editted- Returns:
- a validator reflecting all default validations for the field
-
createDefaultValidator
public FieldValidator createDefaultValidator(ComponentResources resources, java.lang.String parameterName)
Description copied from interface:FieldValidatorDefaultSource
A convenience for the full version; assumes that the resources are associated with aField
.- Specified by:
createDefaultValidator
in interfaceFieldValidatorDefaultSource
- Returns:
- a validator reflecting all default validations for the field
-
-