Interface Action.Container

Interface implemented by all components where actions can be registered. This means that the components lets others to register as action handlers to it. When the component receives an action targeting its contents it should loop all action handlers registered to it and let them hanle the action.

Synopsis

Since

3.0

Inheritance Path.  com.itmill.toolkit.event.Action.Container

addActionHandler(Action.Handler)

Parameters

actionHandler

the new handler to be added.

Registers a new action handler for this container

removeActionHandler(Action.Handler)

Parameters

actionHandler

the handler to be removed

Remove a previously registered action handler for the contents of this container.