| org.apache.beehive.controls.api.context.ControlContainerContext
All known Subclasses: org.apache.beehive.controls.runtime.bean.ControlContainerContext,
ControlContainerContext | public interface ControlContainerContext extends EventDispatcher,ControlBeanContext(Code) | | The ControlContainerContext interface defines the basic contract between an external container
of controls and the Controls runtime.
|
Method Summary | |
public void | beginContext() Makes the ControlContainerContext instance the current active context. | public void | endContext() Ends the active context associated with the ControlContainerContext. | public ControlHandle | getControlHandle(ControlBean bean) Returns a ControlHandle to the component containing the control. |
beginContext | public void beginContext()(Code) | | Makes the ControlContainerContext instance the current active context. This is
called at the beginning of the execution scope for the control container.
|
endContext | public void endContext()(Code) | | Ends the active context associated with the ControlContainerContext. This is called
at the end of the execution scope for the control container.
|
getControlHandle | public ControlHandle getControlHandle(ControlBean bean)(Code) | | Returns a ControlHandle to the component containing the control. This handle can be
used to dispatch events and operations to a control instance. This method will return
null if the containing component does not support direct dispatch.
|
|
|