Uses of Interface
org.apache.commons.configuration.beanutils.BeanFactory

Packages that use BeanFactory
org.apache.commons.configuration The Configuration main package. 
org.apache.commons.configuration.beanutils In this package a Configuration implementation can be found that implements the DynaBean interface. 
 

Uses of BeanFactory in org.apache.commons.configuration
 

Classes in org.apache.commons.configuration that implement BeanFactory
(package private) static class DefaultConfigurationBuilder.ConfigurationBeanFactory
          A specialized BeanFactory implementation that handles configuration declarations.
(package private) static class DefaultConfigurationBuilder.ConfigurationBuilderProvider
          A specialized configuration provider class that allows to include other configuration definition files.
static class DefaultConfigurationBuilder.ConfigurationProvider
           A base class for creating and initializing configuration sources.
static class DefaultConfigurationBuilder.FileConfigurationProvider
          A specialized provider implementation that deals with file based configurations.
(package private) static class DefaultConfigurationBuilder.FileExtensionConfigurationProvider
          A specialized configuration provider for file based configurations that can handle configuration sources whose concrete type depends on the extension of the file to be loaded.
(package private) static class DefaultConfigurationBuilder.XMLConfigurationProvider
          A specialized configuration provider for XML configurations.
 

Uses of BeanFactory in org.apache.commons.configuration.beanutils
 

Classes in org.apache.commons.configuration.beanutils that implement BeanFactory
 class DefaultBeanFactory
           The default implementation of the BeanFactory interface.
 

Fields in org.apache.commons.configuration.beanutils declared as BeanFactory
private static BeanFactory BeanHelper.defaultBeanFactory
          Stores the default bean factory, which will be used if no other factory is provided.
 

Methods in org.apache.commons.configuration.beanutils that return BeanFactory
static BeanFactory BeanHelper.deregisterBeanFactory(java.lang.String name)
          Deregisters the bean factory with the given name.
private static BeanFactory BeanHelper.fetchBeanFactory(BeanDeclaration data)
          Obtains the bean factory to use for creating the specified bean.
static BeanFactory BeanHelper.getDefaultBeanFactory()
          Returns the default bean factory.
 

Methods in org.apache.commons.configuration.beanutils with parameters of type BeanFactory
private static java.lang.Class BeanHelper.fetchBeanClass(BeanDeclaration data, java.lang.Class defaultClass, BeanFactory factory)
          Determines the class of the bean to be created.
static void BeanHelper.registerBeanFactory(java.lang.String name, BeanFactory factory)
          Register a bean factory under a symbolic name.
static void BeanHelper.setDefaultBeanFactory(BeanFactory factory)
          Sets the default bean factory.