Uses of Class
org.springframework.beans.MutablePropertyValues

Packages that use MutablePropertyValues
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.factory.xml Contains an abstract XML-based BeanFactory implementation, including a standard "spring-beans" DTD. 
org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation. 
org.springframework.web.bind Provides web-specific data binding functionality, including a utility class for easy invocation of binding and validation. 
 

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

Methods in org.springframework.beans.factory.config that return MutablePropertyValues
 MutablePropertyValues BeanDefinition.getPropertyValues()
          Return the PropertyValues to be applied to a new instance of the bean.
 

Methods in org.springframework.beans.factory.config with parameters of type MutablePropertyValues
protected  void PropertyPlaceholderConfigurer.parsePropertyValues(java.util.Properties props, MutablePropertyValues pvs)
           
 

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

Methods in org.springframework.beans.factory.support that return MutablePropertyValues
 MutablePropertyValues AbstractBeanDefinition.getPropertyValues()
           
 

Methods in org.springframework.beans.factory.support with parameters of type MutablePropertyValues
protected  void AbstractAutowireCapableBeanFactory.autowireByName(java.lang.String beanName, RootBeanDefinition mergedBeanDefinition, BeanWrapper bw, MutablePropertyValues pvs)
          Fills in any missing property values with references to other beans in this factory if autowire is set to "byName".
protected  void AbstractAutowireCapableBeanFactory.autowireByType(java.lang.String beanName, RootBeanDefinition mergedBeanDefinition, BeanWrapper bw, MutablePropertyValues pvs)
          Abstract method defining "autowire by type" (bean properties by type) behaviour.
 

Constructors in org.springframework.beans.factory.support with parameters of type MutablePropertyValues
RootBeanDefinition(java.lang.Class beanClass, MutablePropertyValues pvs)
          Create a new RootBeanDefinition for a singleton, providing property values.
RootBeanDefinition(java.lang.Class beanClass, MutablePropertyValues pvs, boolean singleton)
          Create a new RootBeanDefinition with the given singleton status, providing property values.
RootBeanDefinition(java.lang.Class beanClass, ConstructorArgumentValues cargs, MutablePropertyValues pvs)
          Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.
RootBeanDefinition(java.lang.String beanClassName, ConstructorArgumentValues cargs, MutablePropertyValues pvs)
          Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.
ChildBeanDefinition(java.lang.String parentName, MutablePropertyValues pvs)
          Create a new ChildBeanDefinition for the given parent.
AbstractBeanDefinition(MutablePropertyValues pvs)
          Create a new bean definition.
 

Uses of MutablePropertyValues in org.springframework.beans.factory.xml
 

Methods in org.springframework.beans.factory.xml that return MutablePropertyValues
protected  MutablePropertyValues DefaultXmlBeanDefinitionParser.getPropertyValueSubElements(java.lang.String beanName, org.w3c.dom.Element beanEle)
          Parse property value subelements of the given bean element.
 

Methods in org.springframework.beans.factory.xml with parameters of type MutablePropertyValues
protected  void DefaultXmlBeanDefinitionParser.parsePropertyElement(java.lang.String beanName, MutablePropertyValues pvs, org.w3c.dom.Element ele)
          Parse a property element.
 

Uses of MutablePropertyValues in org.springframework.context.support
 

Methods in org.springframework.context.support with parameters of type MutablePropertyValues
 void StaticApplicationContext.registerSingleton(java.lang.String name, java.lang.Class clazz, MutablePropertyValues pvs)
          Register a singleton bean with the default bean factory.
 void StaticApplicationContext.registerPrototype(java.lang.String name, java.lang.Class clazz, MutablePropertyValues pvs)
          Register a prototype bean with the default bean factory.
 

Uses of MutablePropertyValues in org.springframework.web.bind
 

Subclasses of MutablePropertyValues in org.springframework.web.bind
 class ServletRequestParameterPropertyValues
          PropertyValues implementation created from parameters in a ServletRequest.
 



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