| org.strecks.bind.handler.BindHandler
All known Subclasses: org.strecks.bind.handler.BindSimpleHandler, org.strecks.bind.handler.BindSelectHandler,
BindHandler | public interface BindHandler (Code) | | Defines interface for performing bindings to and from target bean to bindable object
author: Phil Zoio |
bindInwards | public void bindInwards(Object form, Object actionBean, Object convertedValue)(Code) | | Binds from sourcePropertyName in the bean bean. Note that the property contains a
getXXX() method with an annotation which defines the target property of the binding
Parameters: actionBean - the action bean Parameters: convertedValue - if conversion has already taken placed during a validation step, the converted value will be passed inhere. This value can be used instead of executing conversion code in the BindHandler |
bindOutwards | public void bindOutwards(Object form, Object actionBean)(Code) | | Binds to targetPropertyName in the bean . Note that the property contains a
getXXX() method with an annotation which defines the target property of the binding
Parameters: actionBean - the action bean the action bean |
getConverter | public Converter getConverter()(Code) | | Returns the converter class registered with the BindHandler instance. May return null
|
|
|