Uses of Interface
org.springframework.beans.PropertyEditorRegistry

Packages that use PropertyEditorRegistry
org.springframework.beans This package contains interfaces and classes for manipulating Java beans. 
org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers. 
org.springframework.web.bind Provides web-specific data binding functionality, including a utility class for easy invocation of binding and validation. 
 

Uses of PropertyEditorRegistry in org.springframework.beans
 

Subinterfaces of PropertyEditorRegistry in org.springframework.beans
 interface BeanWrapper
          The central interface of Spring's low-level JavaBeans infrastructure.
 

Classes in org.springframework.beans that implement PropertyEditorRegistry
 class BeanWrapperImpl
          Default BeanWrapper implementation that should be sufficient for all typical use cases.
 class PropertyEditorRegistrySupport
          Base implementation of the PropertyEditorRegistry interface.
 

Methods in org.springframework.beans with parameters of type PropertyEditorRegistry
protected  void PropertyEditorRegistrySupport.copyCustomEditorsTo(PropertyEditorRegistry target, String nestedProperty)
          Copy the custom editors registered in this instance to the given target registry.
 void PropertyEditorRegistrar.registerCustomEditors(PropertyEditorRegistry registry)
          Register custom PropertyEditors with the given PropertyEditorRegistry.
 

Uses of PropertyEditorRegistry in org.springframework.validation
 

Classes in org.springframework.validation that implement PropertyEditorRegistry
 class DataBinder
          Binder that allows for binding property values to a target object.
 

Methods in org.springframework.validation that return PropertyEditorRegistry
 PropertyEditorRegistry BindException.getPropertyEditorRegistry()
          Return the underlying BeanWrapper as PropertyEditorRegistry.
 

Uses of PropertyEditorRegistry in org.springframework.web.bind
 

Classes in org.springframework.web.bind that implement PropertyEditorRegistry
 class ServletRequestDataBinder
          Special DataBinder to perform data binding from servlet request parameters to JavaBeans, including support for multipart files.
 class WebDataBinder
          Special DataBinder to perform data binding from web request parameters to JavaBeans.
 



Copyright (c) 2002-2007 The Spring Framework Project.