|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FieldValidationSupport
Services to help with field validation and translation. This service encapsulates the logic that mixes normal configured/declared validation/translation with events triggered on the component.
Method Summary | |
---|---|
Object |
parseClient(String clientValue,
ComponentResources componentResources,
FieldTranslator<Object> translator,
NullFieldStrategy nullFieldStrategy)
A wrapper around Translator.parseClient(Field, String, String) . |
String |
toClient(Object value,
ComponentResources componentResources,
FieldTranslator<Object> translator,
NullFieldStrategy nullFieldStrategy)
A wrapper around Translator.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. |
Method Detail |
---|
String toClient(Object value, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy)
Translator.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.
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
Translator.toClient(Object)
Object parseClient(String clientValue, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy) throws ValidationException
Translator.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).
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
ValidationException
- if the value can't be parsedTranslator.parseClient(Field, String, String)
void validate(Object value, ComponentResources componentResources, FieldValidator validator) throws ValidationException
value
- parsed value from the client, possibly nullcomponentResources
- used to trigger eventsvalidator
- performs normal validations
ValidationException
- if the value is not validValidator.validate(Field, Object, org.apache.tapestry5.ioc.MessageFormatter, Object)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |