Uses of Interface
org.springframework.beans.ConfigurablePropertyAccessor

Packages that use ConfigurablePropertyAccessor
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. 
 

Uses of ConfigurablePropertyAccessor in org.springframework.beans
 

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

Classes in org.springframework.beans that implement ConfigurablePropertyAccessor
 class AbstractPropertyAccessor
          Abstract implementation of the PropertyAccessor interface.
 class BeanWrapperImpl
          Default BeanWrapper implementation that should be sufficient for all typical use cases.
 class DirectFieldAccessor
          PropertyAccessor implementation that directly accesses instance fields.
 

Methods in org.springframework.beans that return ConfigurablePropertyAccessor
static ConfigurablePropertyAccessor PropertyAccessorFactory.forDirectFieldAccess(Object target)
          Obtain a PropertyAccessor for the given target object, accessing properties in direct field style.
 

Uses of ConfigurablePropertyAccessor in org.springframework.validation
 

Methods in org.springframework.validation that return ConfigurablePropertyAccessor
protected  ConfigurablePropertyAccessor DirectFieldBindingResult.createDirectFieldAccessor()
          Create a new DirectFieldAccessor for the underlying target object.
abstract  ConfigurablePropertyAccessor AbstractPropertyBindingResult.getPropertyAccessor()
          Provide the PropertyAccessor to work with, according to the concrete strategy of access.
protected  ConfigurablePropertyAccessor DataBinder.getPropertyAccessor()
          Return the underlying PropertyAccessor of this binder's BindingResult.
 ConfigurablePropertyAccessor DirectFieldBindingResult.getPropertyAccessor()
          Returns the DirectFieldAccessor that this instance uses.
 ConfigurablePropertyAccessor BeanPropertyBindingResult.getPropertyAccessor()
          Returns the BeanWrapper that this instance uses.
 



Copyright © 2002-2008 The Spring Framework.