Uses of Interface
org.apache.beehive.controls.api.context.ControlBeanContext

Packages that use ControlBeanContext
org.apache.beehive.controls.api.bean   
org.apache.beehive.controls.api.context   
org.apache.beehive.controls.runtime.bean   
org.apache.beehive.controls.runtime.servlet   
org.apache.beehive.controls.spi.bean   
org.apache.beehive.controls.spi.context   
org.apache.beehive.controls.test.container   
 

Uses of ControlBeanContext in org.apache.beehive.controls.api.bean
 

Methods in org.apache.beehive.controls.api.bean that return ControlBeanContext
 ControlBeanContext ControlBean.getControlBeanContext()
          Returns the org.apache.beehive.controls.api.context.ControlBeanContext instance that provides the local context for this control bean.
 

Methods in org.apache.beehive.controls.api.bean with parameters of type ControlBeanContext
static void Controls.initializeClient(ClassLoader cl, Object client, ControlBeanContext cbc)
          Helper method for initializing instances of declarative control clients (objects that use controls via @Control and @EventHandler annotations).
static
<T extends ControlBean>
T
Controls.instantiate(Class<T> beanClass, PropertyMap props, ControlBeanContext context, String id)
          Factory method for instantiating controls.
static ControlBean Controls.instantiate(ClassLoader cl, String beanName, PropertyMap props, ControlBeanContext cbc, String id)
          Factory method for instantiating controls.
 

Uses of ControlBeanContext in org.apache.beehive.controls.api.context
 

Subinterfaces of ControlBeanContext in org.apache.beehive.controls.api.context
 interface ControlContainerContext
          The ControlContainerContext interface defines the basic contract between an external container of controls and the Controls runtime.
 

Uses of ControlBeanContext in org.apache.beehive.controls.runtime.bean
 

Classes in org.apache.beehive.controls.runtime.bean that implement ControlBeanContext
 class ControlBeanContext
          The ControlBeanContext implements the basic BeanContextServices implementation for ControlBeans.
 class ControlContainerContext
          The ControlContainerContext class provides a base class implementation for external containers of ControlBeans.
 

Methods in org.apache.beehive.controls.runtime.bean that return ControlBeanContext
 ControlBeanContext DefaultControlBeanContextFactory.instantiate(ControlBean controlBean)
          Create the ControlBeanContext for the ControlBean.
 

Methods in org.apache.beehive.controls.runtime.bean with parameters of type ControlBeanContext
static PropertyMap ClientInitializer.getAnnotationMap(ControlBeanContext cbc, AnnotatedElement annotElem)
          Returns the annotation map for the specified element.
 

Constructors in org.apache.beehive.controls.runtime.bean with parameters of type ControlBeanContext
ControlBean(ControlBeanContext context, String id, PropertyMap initProperties, Class controlIntf)
           
 

Uses of ControlBeanContext in org.apache.beehive.controls.runtime.servlet
 

Classes in org.apache.beehive.controls.runtime.servlet that implement ControlBeanContext
 class ServletBeanContext
          The ServletBeanContext provides a ControlBeanContext implementation that offers services and a resource management context that is appropriate to web tier usage of controls.
 

Uses of ControlBeanContext in org.apache.beehive.controls.spi.bean
 

Methods in org.apache.beehive.controls.spi.bean with parameters of type ControlBeanContext
<T extends ControlBean>
T
JavaControlFactory.instantiate(Class<T> beanClass, PropertyMap props, ControlBeanContext context, String id)
          Instantiates a new ControlBean of the requested class, using mechanisms provided by a provider-specific JavaBeans framework.
<T extends ControlBean>
T
ControlFactory.instantiate(Class<T> beanClass, PropertyMap props, ControlBeanContext context, String id)
          Instantiates a new ControlBean of the requested class, using mechanisms provided by a provider-specific JavaBeans framework.
 

Uses of ControlBeanContext in org.apache.beehive.controls.spi.context
 

Methods in org.apache.beehive.controls.spi.context with type parameters of type ControlBeanContext
<T extends ControlBeanContext>
T
ControlBeanContextFactory.instantiate(ControlBean controlBean)
          Instantiate a ControlBeanContext object that will be associated with the provided ControlBean.
 

Uses of ControlBeanContext in org.apache.beehive.controls.test.container
 

Classes in org.apache.beehive.controls.test.container that implement ControlBeanContext
 class ControlTestContainerContext
          ControlContainerContext implementation used to test controls in a standalone JVM.