Uses of Interface
org.springframework.beans.PropertyEditorRegistrar

Packages that use PropertyEditorRegistrar
org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories. 
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package. 
org.springframework.beans.support Classes supporting the org.springframework.beans package, such as utility classes for sorting and holding lists of beans. 
org.springframework.web.bind.support Support classes for web data binding. 
org.springframework.web.portlet.mvc Standard controller implementations for the portlet MVC framework that comes with Spring. 
org.springframework.web.servlet.mvc Standard controller implementations for the servlet MVC framework that comes with Spring. 
 

Uses of PropertyEditorRegistrar in org.springframework.beans.factory.config
 

Methods in org.springframework.beans.factory.config with parameters of type PropertyEditorRegistrar
 void ConfigurableBeanFactory.addPropertyEditorRegistrar(PropertyEditorRegistrar registrar)
          Add a PropertyEditorRegistrar to be applied to all bean creation processes.
 void CustomEditorConfigurer.setPropertyEditorRegistrars(PropertyEditorRegistrar[] propertyEditorRegistrars)
          Specify the PropertyEditorRegistrars to apply to beans defined within the current application context.
 

Uses of PropertyEditorRegistrar in org.springframework.beans.factory.support
 

Methods in org.springframework.beans.factory.support with parameters of type PropertyEditorRegistrar
 void AbstractBeanFactory.addPropertyEditorRegistrar(PropertyEditorRegistrar registrar)
           
 

Uses of PropertyEditorRegistrar in org.springframework.beans.support
 

Classes in org.springframework.beans.support that implement PropertyEditorRegistrar
 class ResourceEditorRegistrar
          PropertyEditorRegistrar implementation that populates a given PropertyEditorRegistry (typically a BeanWrapper used for bean creation within an ApplicationContext) with resource editors.
 

Uses of PropertyEditorRegistrar in org.springframework.web.bind.support
 

Methods in org.springframework.web.bind.support that return PropertyEditorRegistrar
 PropertyEditorRegistrar[] ConfigurableWebBindingInitializer.getPropertyEditorRegistrars()
          Return the PropertyEditorRegistrars to be applied to every DataBinder that this controller uses.
 

Methods in org.springframework.web.bind.support with parameters of type PropertyEditorRegistrar
 void ConfigurableWebBindingInitializer.setPropertyEditorRegistrar(PropertyEditorRegistrar propertyEditorRegistrar)
          Specify a single PropertyEditorRegistrar to be applied to every DataBinder that this controller uses.
 void ConfigurableWebBindingInitializer.setPropertyEditorRegistrars(PropertyEditorRegistrar[] propertyEditorRegistrars)
          Specify multiple PropertyEditorRegistrars to be applied to every DataBinder that this controller uses.
 

Uses of PropertyEditorRegistrar in org.springframework.web.portlet.mvc
 

Methods in org.springframework.web.portlet.mvc that return PropertyEditorRegistrar
 PropertyEditorRegistrar[] BaseCommandController.getPropertyEditorRegistrars()
          Return the PropertyEditorRegistrars (if any) to be applied to every DataBinder that this controller uses.
 

Methods in org.springframework.web.portlet.mvc with parameters of type PropertyEditorRegistrar
 void BaseCommandController.setPropertyEditorRegistrar(PropertyEditorRegistrar propertyEditorRegistrar)
          Specify a single PropertyEditorRegistrar to be applied to every DataBinder that this controller uses.
 void BaseCommandController.setPropertyEditorRegistrars(PropertyEditorRegistrar[] propertyEditorRegistrars)
          Specify one or more PropertyEditorRegistrars to be applied to every DataBinder that this controller uses.
 

Uses of PropertyEditorRegistrar in org.springframework.web.servlet.mvc
 

Methods in org.springframework.web.servlet.mvc that return PropertyEditorRegistrar
 PropertyEditorRegistrar[] BaseCommandController.getPropertyEditorRegistrars()
          Return the PropertyEditorRegistrars (if any) to be applied to every DataBinder that this controller uses.
 

Methods in org.springframework.web.servlet.mvc with parameters of type PropertyEditorRegistrar
 void BaseCommandController.setPropertyEditorRegistrar(PropertyEditorRegistrar propertyEditorRegistrar)
          Specify a single PropertyEditorRegistrar to be applied to every DataBinder that this controller uses.
 void BaseCommandController.setPropertyEditorRegistrars(PropertyEditorRegistrar[] propertyEditorRegistrars)
          Specify multiple PropertyEditorRegistrars to be applied to every DataBinder that this controller uses.
 



Copyright © 2002-2008 The Spring Framework.