Uses of Class
org.springframework.beans.factory.support.AbstractBeanDefinition

Packages that use AbstractBeanDefinition
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package. 
 

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

Subclasses of AbstractBeanDefinition in org.springframework.beans.factory.support
 class ChildBeanDefinition
          Bean definition for beans who inherit settings from their parent.
 class RootBeanDefinition
          Root bean definitions are the most common type of bean definition.
 

Methods in org.springframework.beans.factory.support that return AbstractBeanDefinition
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.
 

Methods in org.springframework.beans.factory.support with parameters of type AbstractBeanDefinition
static String BeanDefinitionReaderUtils.generateBeanName(AbstractBeanDefinition beanDefinition, BeanDefinitionRegistry beanFactory, boolean isInnerBean)
          Generate a bean name for the given bean definition, unique within the given bean factory.
 void AbstractBeanDefinition.overrideFrom(AbstractBeanDefinition other)
          Override settings in this bean definition (assumably a copied parent from a parent-child inheritance relationship) from the given bean definition (assumably the child).
 

Constructors in org.springframework.beans.factory.support with parameters of type AbstractBeanDefinition
AbstractBeanDefinition(AbstractBeanDefinition original)
          Create a new AbstractBeanDefinition as deep copy of the given bean definition.
 



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