Contract for client behaviors. AdfClientBehavior objects add pre-canned
behavior to AdfUIComponent instances, typically be registering event
listeners on the component. The AdfClientBehavior instance is given
the opportunity to register event listeners during component creation
via the AdfClientBehavior.initialize() callback.
AdfClientBehavior is an abstract class. Subclasses must provide an
implementation of initialize().
Field Summary
Fields inherited from oracle.adf.view.js.base.AdfObject
Contract for client behaviors. AdfClientBehavior objects add pre-canned
behavior to AdfUIComponent instances, typically be registering event
listeners on the component. The AdfClientBehavior instance is given
the opportunity to register event listeners during component creation
via the AdfClientBehavior.initialize() callback.
AdfClientBehavior is an abstract class. Subclasses must provide an
implementation of initialize().
The uninitialize method is called back to notify the AdfClientBehavior
when the component is removed. This is left as non abstract to be
backward compatibile.
The initialize method is called back to notify the AdfClientBehavior
that it is time to perform any required initialization work on the component.
Typically this means registering event handlers.