All Known Implementing Classes:
PropertyEditorRegistrySupport, SimpleTypeConverter, ServletRequestDataBinder, BeanWrapper, PortletRequestDataBinder, DataBinder, WebRequestDataBinder, BeanWrapperImpl, AbstractPropertyAccessor, ConfigurablePropertyAccessor, WebDataBinder, DirectFieldAccessor
Extended by BeanWrapper ; implemented by BeanWrapperImpl and org.springframework.validation.DataBinder .
Juergen - Hoeller1.2.6 - | Method from org.springframework.beans.PropertyEditorRegistry Summary: |
|---|
| findCustomEditor, registerCustomEditor, registerCustomEditor |
| Method from org.springframework.beans.PropertyEditorRegistry Detail: |
|---|
|
|
If the property path denotes an array or Collection property,
the editor will get applied either to the array/Collection itself
(the PropertyEditor has to create an array or Collection value) or
to each element (the Note: Only one single registered custom editor per property path is supported. In the case of a Collection/array, do not register an editor for both the Collection/array and each element on the same property. For example, if you wanted to register an editor for "items[n].quantity" (for all values n), you would use "items.quantity" as the value of the 'propertyPath' argument to this method. |