org.springframework.batch.support
Class DefaultPropertyEditorRegistrar

java.lang.Object
  extended by org.springframework.batch.support.DefaultPropertyEditorRegistrar
All Implemented Interfaces:
PropertyEditorRegistrar
Direct Known Subclasses:
BeanWrapperFieldSetMapper

public class DefaultPropertyEditorRegistrar
extends Object
implements PropertyEditorRegistrar

A re-usable PropertyEditorRegistrar that can be used wherever one needs to register custom PropertyEditor instances with a PropertyEditorRegistry (like a bean wrapper, or a type converter).

Author:
Dave Syer

Constructor Summary
DefaultPropertyEditorRegistrar()
           
 
Method Summary
 void registerCustomEditors(PropertyEditorRegistry registry)
          Register the custom editors with the given registry.
 void setCustomEditors(Map customEditors)
          Specify the custom editors to register.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultPropertyEditorRegistrar

public DefaultPropertyEditorRegistrar()
Method Detail

registerCustomEditors

public void registerCustomEditors(PropertyEditorRegistry registry)
Register the custom editors with the given registry.

Specified by:
registerCustomEditors in interface PropertyEditorRegistrar
See Also:
PropertyEditorRegistrar.registerCustomEditors(org.springframework.beans.PropertyEditorRegistry)

setCustomEditors

public void setCustomEditors(Map customEditors)
Specify the custom editors to register.

Parameters:
customEditors - a map of Class to PropertyEditor (or class name to PropertyEditor).
See Also:
CustomEditorConfigurer.setCustomEditors(Map)


Copyright © 2008 SpringSource. All Rights Reserved.