Uses of Interface
org.apache.commons.configuration2.beanutils.BeanFactory
-
Packages that use BeanFactory Package Description org.apache.commons.configuration2.beanutils In this package aConfiguration
implementation can be found that implements theDynaBean
interface. -
-
Uses of BeanFactory in org.apache.commons.configuration2.beanutils
Classes in org.apache.commons.configuration2.beanutils that implement BeanFactory Modifier and Type Class Description class
DefaultBeanFactory
The default implementation of theBeanFactory
interface.Fields in org.apache.commons.configuration2.beanutils declared as BeanFactory Modifier and Type Field Description private BeanFactory
BeanHelper. defaultBeanFactory
Stores the default bean factory, which is used if no other factory is provided in a bean declaration.Fields in org.apache.commons.configuration2.beanutils with type parameters of type BeanFactory Modifier and Type Field Description private java.util.Map<java.lang.String,BeanFactory>
BeanHelper. beanFactories
Stores a map with the registered bean factories.Methods in org.apache.commons.configuration2.beanutils that return BeanFactory Modifier and Type Method Description BeanFactory
BeanHelper. deregisterBeanFactory(java.lang.String name)
Deregisters the bean factory with the given name.private BeanFactory
BeanHelper. fetchBeanFactory(BeanDeclaration data)
Obtains the bean factory to use for creating the specified bean.BeanFactory
BeanHelper. getDefaultBeanFactory()
Gets the default bean factory.Methods in org.apache.commons.configuration2.beanutils with parameters of type BeanFactory Modifier and Type Method Description private BeanCreationContext
BeanHelper. createBeanCreationContext(BeanDeclaration data, java.lang.Class<?> defaultClass, java.lang.Object param, BeanFactory factory)
Creates aBeanCreationContext
object for the creation of the specified bean.private static java.lang.Class<?>
BeanHelper. fetchBeanClass(BeanDeclaration data, java.lang.Class<?> defaultClass, BeanFactory factory)
Determines the class of the bean to be created.void
BeanHelper. registerBeanFactory(java.lang.String name, BeanFactory factory)
Registers a bean factory under a symbolic name.Constructors in org.apache.commons.configuration2.beanutils with parameters of type BeanFactory Constructor Description BeanHelper(BeanFactory defaultBeanFactory)
Constructs a new instance ofBeanHelper
and sets the specified defaultBeanFactory
.
-