Uses of Interface
org.apache.beehive.controls.api.bean.ControlBean

Packages that use ControlBean
org.apache.beehive.controls.api.bean   
org.apache.beehive.controls.api.context   
org.apache.beehive.controls.runtime.bean   
org.apache.beehive.controls.spi.bean   
org.apache.beehive.controls.spi.context   
org.apache.beehive.controls.spi.svc   
org.apache.beehive.controls.test.junit   
 

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

Methods in org.apache.beehive.controls.api.bean with type parameters of type ControlBean
static
<T extends ControlBean>
T
Controls.instantiate(Class<T> beanClass, PropertyMap props, ControlBeanContext context, String id)
          Factory method for instantiating controls.
 

Methods in org.apache.beehive.controls.api.bean that return ControlBean
static ControlBean Controls.instantiate(ClassLoader cl, String beanName, PropertyMap props)
          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 ControlBean in org.apache.beehive.controls.api.context
 

Methods in org.apache.beehive.controls.api.context that return ControlBean
 ControlBean ControlBeanContext.getBean(String id)
          Returns any child ControlBean that is nested in the ControlBeanContext, or null if no matching child is found.
 ControlBean ControlBeanContext.getControlBean()
          Returns the peer ControlBean associated with this ControlBeanContext.
 

Methods in org.apache.beehive.controls.api.context with parameters of type ControlBean
 ControlHandle ControlContainerContext.getControlHandle(ControlBean bean)
          Returns a ControlHandle to the component containing the control.
 

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

Classes in org.apache.beehive.controls.runtime.bean that implement ControlBean
 class ControlBean
          The ControlBean class is an abstract base class for the JavaBean classes generated to support Beehive Controls.
 

Methods in org.apache.beehive.controls.runtime.bean with parameters of type ControlBean
 ControlHandle ControlContainerContext.getControlHandle(ControlBean bean)
          Returns a ControlHandle to the component containing the control.
 ControlBeanContext DefaultControlBeanContextFactory.instantiate(ControlBean controlBean)
          Create the ControlBeanContext for the ControlBean.
 

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

Methods in org.apache.beehive.controls.spi.bean with type parameters of type ControlBean
<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 ControlBean in org.apache.beehive.controls.spi.context
 

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

Uses of ControlBean in org.apache.beehive.controls.spi.svc
 

Methods in org.apache.beehive.controls.spi.svc with parameters of type ControlBean
 void Interceptor.postEvent(ControlBean cb, Class eventSet, Method m, Object[] args, Object retval, Throwable t)
          Called after a control event is fired (through a client proxy)
 void Interceptor.postInvoke(ControlBean cb, Method m, Object[] args, Object retval, Throwable t)
          Called after a control operation is invoked
 void Interceptor.preEvent(ControlBean cb, Class eventSet, Method m, Object[] args)
          Called before a control event is fired (through a client proxy)
 void Interceptor.preInvoke(ControlBean cb, Method m, Object[] args)
          Called before a control operation is invoked
 

Uses of ControlBean in org.apache.beehive.controls.test.junit
 

Methods in org.apache.beehive.controls.test.junit that return ControlBean
protected  ControlBean ControlTestCase.instantiateControl(String className)