| java.lang.Object org.strecks.bind.handler.AbstractBindHandler
All known Subclasses: org.strecks.bind.handler.BindSimpleHandler, org.strecks.bind.handler.BindSelectHandler,
AbstractBindHandler | public class AbstractBindHandler (Code) | | Abstract base class for BindHandler s. Implements convenience methods used by
subclasses
author: Phil Zoio |
createConverter | protected Converter createConverter(Class> propertyType, Class converterClass)(Code) | | Instantiates converter using the Class.newInstance() method
Parameters: propertyType - the target class of the converter See Also: Converter.setTargetClass() Parameters: converterClass - the name off the converter class to instantiate a newly created instance of Converter |
getAndConvertInwards | protected Object getAndConvertInwards(Object source, String sourcePropertyName, Converter converter)(Code) | | Handles conversion from the source property where the possibility exists that the type of the
source property to be converted may be incompatible with the Converter
parameterization type
|
getAndConvertOutwards | protected Object getAndConvertOutwards(Object targetBean, String propertyName, Converter converter)(Code) | | Handles conversion from the target property where the possibility exists that the type of the
source property to be converted may be incompatible with the Converter
parameterization type
|
getConverterClass | final public Class getConverterClass()(Code) | | |
|
|