The Spring Framework

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

Packages that use AbstractBeanDefinition
org.springframework.aop.config Support package for declarative AOP configuration, with XML schema being the primary configuration format. 
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.scripting.config Support package for Spring's dynamic language machinery, with XML schema being the primary configuration format. 
org.springframework.transaction.config Support package for declarative transaction configuration, with XML schema being the primary configuration format. 
 

Uses of AbstractBeanDefinition in org.springframework.aop.config
 

Methods in org.springframework.aop.config that return AbstractBeanDefinition
protected  AbstractBeanDefinition ConfigBeanDefinitionParser.createPointcutDefinition(String expression)
          Creates a BeanDefinition for the AspectJExpressionPointcut class using the supplied pointcut expression.
 

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 parent, String className, ClassLoader classLoader)
          Create a new RootBeanDefinition or ChildBeanDefinition for the given class name, parent, constructor arguments, and property values.
static AbstractBeanDefinition BeanDefinitionReaderUtils.createBeanDefinition(String className, String parent, ConstructorArgumentValues cargs, MutablePropertyValues pvs, ClassLoader classLoader)
          Deprecated. in favor of createBeanDefinition(String, String, ClassLoader)
 AbstractBeanDefinition BeanDefinitionBuilder.getBeanDefinition()
          Validate and return the created BeanDefinition object.
 AbstractBeanDefinition BeanDefinitionBuilder.getRawBeanDefinition()
          Return the current BeanDefinition object in its raw (unvalidated) form.
 

Methods in org.springframework.beans.factory.support with parameters of type AbstractBeanDefinition
static String BeanDefinitionReaderUtils.generateBeanName(AbstractBeanDefinition beanDefinition, BeanDefinitionRegistry beanFactory)
          Generate a bean name for the given top-level bean definition, unique within the given bean factory.
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).
static String BeanDefinitionReaderUtils.registerWithGeneratedName(AbstractBeanDefinition beanDefinition, BeanDefinitionRegistry beanFactory)
          Register the given bean definition with a generated name, unique within the given bean factory.
 

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.
 

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

Methods in org.springframework.beans.factory.xml that return AbstractBeanDefinition
 AbstractBeanDefinition BeanDefinitionParserDelegate.parseBeanDefinitionElement(Element ele, String beanName, BeanDefinition containingBean)
          Parse the bean definition itself, without regard to name or aliases.
protected abstract  AbstractBeanDefinition AbstractBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Central template method to actually parse the supplied Element into one or more BeanDefinitions.
protected  AbstractBeanDefinition AbstractSingleBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Creates a BeanDefinitionBuilder instance for the bean Class and passes it to the AbstractSingleBeanDefinitionParser.doParse(org.w3c.dom.Element, org.springframework.beans.factory.xml.ParserContext, org.springframework.beans.factory.support.BeanDefinitionBuilder) strategy method.
 

Methods in org.springframework.beans.factory.xml with parameters of type AbstractBeanDefinition
protected  String AbstractBeanDefinitionParser.resolveId(Element element, AbstractBeanDefinition definition, ParserContext parserContext)
          Resolve the ID for the supplied BeanDefinition.
 

Uses of AbstractBeanDefinition in org.springframework.scripting.config
 

Methods in org.springframework.scripting.config that return AbstractBeanDefinition
protected  AbstractBeanDefinition ScriptBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Parses the dynamic object element and returns the resulting bean definition.
 

Uses of AbstractBeanDefinition in org.springframework.transaction.config
 

Methods in org.springframework.transaction.config that return AbstractBeanDefinition
protected  AbstractBeanDefinition AnnotationDrivenBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Parses the '<tx:annotation-driven/>>' tag.
 


The Spring Framework

Copyright © 2002-2006 The Spring Framework.