Coordinated Composite (BTTCoordinatedComp)

The BTTCoordinatedComp is an abstract class that is a container for the toolkit visual beans. It is a non-visual bean that provides the following features and functions:

Table 1. Behavior of BTTCoordinatedComp
Situation Event name suffix Action
Receives a "Navigation" or "Action" type event from a child bean Name is unchanged Propagate
Composite is opened. ".viewOpened" Fire
Composite is made visible. ".viewVisible" Fire
Composite is made not visible. ".viewNotVisible" Fire
An "OperationReplyEvent" occurs. ".operationReply" Fire
Composite is closed using the close() method or in response to receiving an event of type "Close". ".viewClosed" Fire
Note: The full event name fired by the composite will be the event name suffix appended to the composite name. To retrieve the composite name, use the composite's getName() method.

For more information on the methods that must be implemented to use this abstract class, see BTTCoordinatedComp.

The OperationComposite and BTTComposite extend this abstract class.

See Coordinated Composite interface description and Coordinated Composite event consumption.