| java.lang.Object org.apache.beehive.controls.runtime.bean.ImplInitializer
ImplInitializer | abstract public class ImplInitializer (Code) | | The ImplInitializer class is an abstract base class that all generated Control
initalization classes will extend. It provides common utilities and supporting code
for initialization, and has a shared package relationship with the base ControlBean
class providing access to internals not available in a more general context.
|
getEventNotifier | public Object getEventNotifier(ControlBean bean, Class eventSet)(Code) | | Returns the ControlBean event notifier for the specified eventSet
|
initControls | public void initControls(ControlBean bean, Object target)(Code) | | Initializes all nested controls required by the target implementation instance.
The default initializer implementation is a noop, but will be overridden by
generated subclasses that contain nested controls
|
initEventProxies | public void initEventProxies(ControlBean bean, Object target)(Code) | | Initializes all event proxies required by the target implementation instance.
The default initializer implementation is a noop, but will be overridden by
generated subclasses that contain event proxies
|
initServices | public void initServices(ControlBean bean, Object target)(Code) | | Initializes all contextual services required by the target implementation instance.
The default initializer implementation is a noop, but will be overridden by
generated subclasses that contain contextual services.
|
initialize | public void initialize(ControlBean bean, Object target)(Code) | | Initializes a new ControlImplementation instance associated with the specified bean.
|
resetServices | public void resetServices(ControlBean bean, Object target)(Code) | | Resets all contextual services on the target implementation instance to null.
The default initializer implementation is a noop, but will be overridden by
generated subclasses that contain contextual services.
|
|
|