Package com.vaadin.event
Interface Action.Notifier
-
- All Superinterfaces:
Action.Container
,Serializable
- All Known Implementing Classes:
ActionManager
,ColorPickerPopup
,ConnectorActionManager
,Form
,LegacyWindow
,Panel
,UI
,Window
- Enclosing class:
- Action
public static interface Action.Notifier extends Action.Container
Action.Containers implementing this support an easier way of adding single Actions than the more involved Action.Handler. The added actions must be Action.Listeners, thus handling the action themselves.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends Action & Action.Listener>
voidaddAction(T action)
<T extends Action & Action.Listener>
voidremoveAction(T action)
-
Methods inherited from interface com.vaadin.event.Action.Container
addActionHandler, removeActionHandler
-
-
-
-
Method Detail
-
addAction
<T extends Action & Action.Listener> void addAction(T action)
-
removeAction
<T extends Action & Action.Listener> void removeAction(T action)
-
-