Uses of Interface
net.sf.jguiraffe.di.BeanCreationListener
-
Packages that use BeanCreationListener Package Description net.sf.jguiraffe.di DI stands for Dependency Injection.net.sf.jguiraffe.di.impl This package contains various implementations for the interfaces defined in the maindi
package.net.sf.jguiraffe.gui.app In this package the main application class can be found.net.sf.jguiraffe.gui.builder The main package of the builder. -
-
Uses of BeanCreationListener in net.sf.jguiraffe.di
Methods in net.sf.jguiraffe.di with parameters of type BeanCreationListener Modifier and Type Method Description void
BeanContext. addBeanCreationListener(BeanCreationListener l)
Adds a newBeanCreationListener
to this context.void
BeanContext. removeBeanCreationListener(BeanCreationListener l)
Removes the specifiedBeanCreationListener
from this context. -
Uses of BeanCreationListener in net.sf.jguiraffe.di.impl
Methods in net.sf.jguiraffe.di.impl with parameters of type BeanCreationListener Modifier and Type Method Description void
BeanContextWrapper. addBeanCreationListener(BeanCreationListener l)
Adds the specifiedBeanCreationListener
to this context.void
DefaultBeanContext. addBeanCreationListener(BeanCreationListener l)
Adds the specifiedBeanCreationListener
to this context.void
BeanContextWrapper. removeBeanCreationListener(BeanCreationListener l)
Removes the specifiedBeanCreationListener
from this context.void
DefaultBeanContext. removeBeanCreationListener(BeanCreationListener l)
Removes the specifiedBeanCreationListener
from this context. -
Uses of BeanCreationListener in net.sf.jguiraffe.gui.app
Methods in net.sf.jguiraffe.gui.app that return types with arguments of type BeanCreationListener Modifier and Type Method Description Collection<BeanCreationListener>
ApplicationBuilderData. getBeanCreationListeners()
Returns a collection withBeanCreationListener
objects to be registered at theBeanContext
created by the builder.Methods in net.sf.jguiraffe.gui.app with parameters of type BeanCreationListener Modifier and Type Method Description void
ApplicationBuilderData. addBeanCreationListener(BeanCreationListener l)
Adds the specifiedBeanCreationListener
to this object.Method parameters in net.sf.jguiraffe.gui.app with type arguments of type BeanCreationListener Modifier and Type Method Description void
ApplicationBuilderData. addBeanCreationListeners(Collection<? extends BeanCreationListener> listeners)
Adds allBeanCreationListener
objects contained in the given collection to this object. -
Uses of BeanCreationListener in net.sf.jguiraffe.gui.builder
Methods in net.sf.jguiraffe.gui.builder that return types with arguments of type BeanCreationListener Modifier and Type Method Description Collection<BeanCreationListener>
BuilderData. getBeanCreationListeners()
Returns a collection with objects to be registered asBeanCreationListener
at theBeanContext
created during the builder operation.
-