Class FieldValidationSupportImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.FieldValidationSupportImpl
-
- All Implemented Interfaces:
FieldValidationSupport
public class FieldValidationSupportImpl extends Object implements FieldValidationSupport
-
-
Constructor Summary
Constructors Constructor Description FieldValidationSupportImpl(TypeCoercer typeCoercer, PropertyAccess propertyAccess)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
parseClient(String clientValue, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy)
A wrapper aroundTranslator.parseClient(Field, String, String)
.String
toClient(Object value, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy)
A wrapper aroundTranslator.toClient(Object)
that first fires a "toclient" event on the component to see if it can perform the conversion.void
validate(Object value, ComponentResources componentResources, FieldValidator validator)
Performs validation on a parsed value from the client.
-
-
-
Constructor Detail
-
FieldValidationSupportImpl
public FieldValidationSupportImpl(TypeCoercer typeCoercer, PropertyAccess propertyAccess)
-
-
Method Detail
-
toClient
public String toClient(Object value, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy)
Description copied from interface:FieldValidationSupport
A wrapper aroundTranslator.toClient(Object)
that first fires a "toclient" event on the component to see if it can perform the conversion. If the value is null, then no event is fired and the translator is not invoked, the return value is simply null.- Specified by:
toClient
in interfaceFieldValidationSupport
- Parameters:
value
- to be converted to a client-side string, which may be nullcomponentResources
- used to fire events on the componenttranslator
- used if the component does not provide a non-null valuenullFieldStrategy
- used to convert a null server side value to an appropriate client side value- Returns:
- the translated value or null if the value is null
- See Also:
Translator.toClient(Object)
-
parseClient
public Object parseClient(String clientValue, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy) throws ValidationException
Description copied from interface:FieldValidationSupport
A wrapper aroundTranslator.parseClient(Field, String, String)
. First a "parseclient" event is fired; the translator is only invoked if that returns null (typically because there is no event handler method for the event).- Specified by:
parseClient
in interfaceFieldValidationSupport
- Parameters:
clientValue
- the value provided by the client (not null)componentResources
- used to trigger eventstranslator
- translator that will do the work if the component event returns nullnullFieldStrategy
- used to convert null/blank values from client into non-null server side values- Returns:
- the input parsed to an object
- Throws:
ValidationException
- if the value can't be parsed- See Also:
Translator.parseClient(Field, String, String)
-
validate
public void validate(Object value, ComponentResources componentResources, FieldValidator validator) throws ValidationException
Description copied from interface:FieldValidationSupport
Performs validation on a parsed value from the client. Normal validations occur first, then a "validate" event is triggered on the component.- Specified by:
validate
in interfaceFieldValidationSupport
- Parameters:
value
- parsed value from the client, possibly nullcomponentResources
- used to trigger eventsvalidator
- performs normal validations- Throws:
ValidationException
- if the value is not valid- See Also:
Validator.validate(Field, Object, org.apache.tapestry5.ioc.MessageFormatter, Object)
-
-