Uses of Interface
org.springframework.beans.factory.support.BeanDefinitionRegistry

Packages that use BeanDefinitionRegistry
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.context.support Classes supporting the org.springframework.web.context package, such as WebApplicationContext implementations, and a utility class for retrieval of the root application context etc. 
 

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

Classes in org.springframework.beans.factory.support that implement BeanDefinitionRegistry
 class DefaultListableBeanFactory
          Default implementation of the ListableBeanFactory and BeanDefinitionRegistry interfaces: a full-fledged bean factory based on bean definitions.
 

Methods in org.springframework.beans.factory.support that return BeanDefinitionRegistry
 BeanDefinitionRegistry BeanDefinitionReader.getBeanFactory()
          Return the bean factory to register the bean definitions with.
 BeanDefinitionRegistry AbstractBeanDefinitionReader.getBeanFactory()
           
 

Methods in org.springframework.beans.factory.support with parameters of type BeanDefinitionRegistry
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.
static void BeanDefinitionReaderUtils.registerBeanDefinition(BeanDefinitionHolder bdHolder, BeanDefinitionRegistry beanFactory)
          Register the given bean definition with the given bean factory.
 

Constructors in org.springframework.beans.factory.support with parameters of type BeanDefinitionRegistry
AbstractBeanDefinitionReader(BeanDefinitionRegistry beanFactory)
          Create a new AbstractBeanDefinitionReader for the given bean factory.
PropertiesBeanDefinitionReader(BeanDefinitionRegistry beanFactory)
          Create new PropertiesBeanDefinitionReader for the given bean factory.
 

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

Classes in org.springframework.beans.factory.xml that implement BeanDefinitionRegistry
 class XmlBeanFactory
          Convenience extension of DefaultListableBeanFactory that reads bean definitions from an XML document.
 

Constructors in org.springframework.beans.factory.xml with parameters of type BeanDefinitionRegistry
XmlBeanDefinitionReader(BeanDefinitionRegistry beanFactory)
          Create new XmlBeanDefinitionReader for the given bean factory.
 

Uses of BeanDefinitionRegistry in org.springframework.context.support
 

Classes in org.springframework.context.support that implement BeanDefinitionRegistry
 class GenericApplicationContext
          Generic ApplicationContext implementation that holds a single internal DefaultListableBeanFactory instance and does not assume a specific bean definition format.
 class StaticApplicationContext
          ApplicationContext that allows concrete registration of beans and messages in code, rather than from external configuration sources.
 

Uses of BeanDefinitionRegistry in org.springframework.web.context.support
 

Classes in org.springframework.web.context.support that implement BeanDefinitionRegistry
 class GenericWebApplicationContext
          Subclass of GenericApplicationContext, suitable for web environments.
 class StaticWebApplicationContext
          Static WebApplicationContext implementation for testing.
 



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