Uses of Interface
org.springframework.beans.PropertyValues

Packages that use PropertyValues
org.springframework.beans This package contains interfaces and classes for manipulating Java beans. 
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package. 
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 PropertyValues in org.springframework.beans
 

Classes in org.springframework.beans that implement PropertyValues
 class MutablePropertyValues
          Default implementation of the PropertyValues interface.
 

Methods in org.springframework.beans that return PropertyValues
 PropertyValues PropertyValues.changesSince(PropertyValues old)
          Return the changes since the previous PropertyValues.
 PropertyValues MutablePropertyValues.changesSince(PropertyValues old)
           
 

Methods in org.springframework.beans with parameters of type PropertyValues
 PropertyValues PropertyValues.changesSince(PropertyValues old)
          Return the changes since the previous PropertyValues.
 PropertyValues MutablePropertyValues.changesSince(PropertyValues old)
           
 void BeanWrapperImpl.setPropertyValues(PropertyValues pvs)
           
 void BeanWrapperImpl.setPropertyValues(PropertyValues propertyValues, boolean ignoreUnknown)
           
 void BeanWrapper.setPropertyValues(PropertyValues pvs)
          The preferred way to perform a bulk update.
 void BeanWrapper.setPropertyValues(PropertyValues pvs, boolean ignoreUnknown)
          Perform a bulk update with full control over behavior.
 

Constructors in org.springframework.beans with parameters of type PropertyValues
MutablePropertyValues(PropertyValues other)
          Deep copy constructor.
 

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

Methods in org.springframework.beans.factory.support with parameters of type PropertyValues
protected  void AbstractAutowireCapableBeanFactory.dependencyCheck(java.lang.String beanName, RootBeanDefinition mergedBeanDefinition, BeanWrapper bw, PropertyValues pvs)
          Perform a dependency check that all properties exposed have been set, if desired.
protected  void AbstractAutowireCapableBeanFactory.applyPropertyValues(java.lang.String beanName, RootBeanDefinition mergedBeanDefinition, BeanWrapper bw, PropertyValues pvs)
          Apply the given property values, resolving any runtime references to other beans in this bean factory.
 

Uses of PropertyValues in org.springframework.validation
 

Methods in org.springframework.validation with parameters of type PropertyValues
 void DataBinder.bind(PropertyValues pvs)
          Bind the given property values to this binder's target.
 

Uses of PropertyValues in org.springframework.web.bind
 

Classes in org.springframework.web.bind that implement PropertyValues
 class ServletRequestParameterPropertyValues
          PropertyValues implementation created from parameters in a ServletRequest.
 



Copyright (C) 2003-2004 The Spring Framework Project.