Package com.vaadin.classic.v8.event
Class ActionManager
- java.lang.Object
-
- com.vaadin.classic.v8.event.ActionManager
-
- All Implemented Interfaces:
Action.Container,Action.Handler,Action.Notifier,java.io.Serializable
@Deprecated public class ActionManager extends java.lang.Object implements Action.Handler, Action.Notifier
Deprecated.Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionManager()Deprecated.ActionManager(T viewer)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T extends Action & Action.Listener>
voidaddAction(T action)Deprecated.voidaddActionHandler(Action.Handler actionHandler)Deprecated.Action[]getActions(java.lang.Object target, java.lang.Object sender)Deprecated.voidhandleAction(Action action, java.lang.Object sender, java.lang.Object target)Deprecated.voidhandleActions(java.util.Map<java.lang.String,java.lang.Object> variables, Action.Container sender)Deprecated.voidpaintActions(java.lang.Object actionTarget, java.lang.Object paintTarget)Deprecated.<T extends Action & Action.Listener>
voidremoveAction(T action)Deprecated.voidremoveActionHandler(Action.Handler actionHandler)Deprecated.voidremoveAllActionHandlers()Deprecated.<T extends Action.Container>
voidsetViewer(T viewer)Deprecated.
-
-
-
Method Detail
-
setViewer
@Deprecated public <T extends Action.Container> void setViewer(T viewer)
Deprecated.
-
addAction
@Deprecated public <T extends Action & Action.Listener> void addAction(T action)
Deprecated.Description copied from interface:Action.NotifierNot supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- Specified by:
addActionin interfaceAction.Notifier- Type Parameters:
T- type- Parameters:
action- action
-
removeAction
@Deprecated public <T extends Action & Action.Listener> void removeAction(T action)
Deprecated.Description copied from interface:Action.NotifierNot supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- Specified by:
removeActionin interfaceAction.Notifier- Type Parameters:
T- type- Parameters:
action- action
-
addActionHandler
@Deprecated public void addActionHandler(Action.Handler actionHandler)
Deprecated.Description copied from interface:Action.ContainerNot supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- Specified by:
addActionHandlerin interfaceAction.Container- Parameters:
actionHandler- the new handler to be added.
-
removeActionHandler
@Deprecated public void removeActionHandler(Action.Handler actionHandler)
Deprecated.Description copied from interface:Action.ContainerNot supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- Specified by:
removeActionHandlerin interfaceAction.Container- Parameters:
actionHandler- the handler to be removed.
-
removeAllActionHandlers
@Deprecated public void removeAllActionHandlers()
Deprecated.
-
paintActions
@Deprecated public void paintActions(java.lang.Object actionTarget, java.lang.Object paintTarget)Deprecated.
-
handleActions
@Deprecated public void handleActions(java.util.Map<java.lang.String,java.lang.Object> variables, Action.Container sender)Deprecated.
-
getActions
@Deprecated public Action[] getActions(java.lang.Object target, java.lang.Object sender)
Deprecated.Description copied from interface:Action.HandlerNot supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- Specified by:
getActionsin interfaceAction.Handler- Parameters:
target- the target handler to list actions for. For item containers this is the item id.sender- the party that would be sending the actions. Most of this is the action container.- Returns:
- empty list
-
handleAction
@Deprecated public void handleAction(Action action, java.lang.Object sender, java.lang.Object target)
Deprecated.Description copied from interface:Action.HandlerNot supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.- Specified by:
handleActionin interfaceAction.Handler- Parameters:
action- the action to be handled.sender- the sender of the action. This is most often the action container.target- the target of the action. For item containers this is the item id.
-
-