Uses of Class
org.springframework.beans.MutablePropertyValues

Packages that use MutablePropertyValues
org.springframework.beans This package contains interfaces and classes for manipulating Java beans.  
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
 

Methods in org.springframework.beans that return MutablePropertyValues
 MutablePropertyValues MutablePropertyValues.addPropertyValues(PropertyValues source)
          Copy all given PropertyValues into this object.
 MutablePropertyValues MutablePropertyValues.addPropertyValues(Map source)
          Add all property values from the given Map.
 MutablePropertyValues MutablePropertyValues.addPropertyValue(PropertyValue pv)
          Add a PropertyValue object, replacing any existing one for the corresponding property.
 

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, if any.
 

Methods in org.springframework.beans.factory.config with parameters of type MutablePropertyValues
protected  void PropertyPlaceholderConfigurer.parsePropertyValues(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()
          Return property values for this bean, if any.
 

Methods in org.springframework.beans.factory.support with parameters of type MutablePropertyValues
protected  void AbstractAutowireCapableBeanFactory.autowireByName(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(String beanName, RootBeanDefinition mergedBeanDefinition, BeanWrapper bw, MutablePropertyValues pvs)
          Abstract method defining "autowire by type" (bean properties by type) behavior.
 void AbstractBeanDefinition.setPropertyValues(MutablePropertyValues propertyValues)
          Specify property values for this bean, if any.
static AbstractBeanDefinition BeanDefinitionReaderUtils.createBeanDefinition(String className, String parent, ConstructorArgumentValues cargs, MutablePropertyValues pvs, ClassLoader classLoader)
          Create a new RootBeanDefinition or ChildBeanDefinition for the given class name, parent, constructor arguments, and property values.
 

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

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

Methods in org.springframework.beans.factory.xml that return MutablePropertyValues
protected  MutablePropertyValues DefaultXmlBeanDefinitionParser.getPropertyValueSubElements(Element beanEle, String beanName)
          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(Element ele, String beanName, MutablePropertyValues pvs)
          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(String name, Class clazz, MutablePropertyValues pvs)
          Register a singleton bean with the underlying bean factory.
 void StaticApplicationContext.registerPrototype(String name, Class clazz, MutablePropertyValues pvs)
          Register a prototype bean with the underlying 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.