Class ActionManager

java.lang.Object
com.vaadin.classic.v8.event.ActionManager
All Implemented Interfaces:
Action.Container, Action.Handler, Action.Notifier, Serializable

@Deprecated public class ActionManager extends 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:
  • Constructor Details

    • ActionManager

      @Deprecated public ActionManager()
      Deprecated.
    • ActionManager

      @Deprecated public ActionManager(T viewer)
      Deprecated.
  • Method Details

    • 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.Notifier
      Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.
      Specified by:
      addAction in interface Action.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.Notifier
      Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.
      Specified by:
      removeAction in interface Action.Notifier
      Type Parameters:
      T - type
      Parameters:
      action - action
    • addActionHandler

      @Deprecated public void addActionHandler(Action.Handler actionHandler)
      Deprecated.
      Description copied from interface: Action.Container
      Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.
      Specified by:
      addActionHandler in interface Action.Container
      Parameters:
      actionHandler - the new handler to be added.
    • removeActionHandler

      @Deprecated public void removeActionHandler(Action.Handler actionHandler)
      Deprecated.
      Description copied from interface: Action.Container
      Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.
      Specified by:
      removeActionHandler in interface Action.Container
      Parameters:
      actionHandler - the handler to be removed.
    • removeAllActionHandlers

      @Deprecated public void removeAllActionHandlers()
      Deprecated.
    • paintActions

      @Deprecated public void paintActions(Object actionTarget, Object paintTarget)
      Deprecated.
    • handleActions

      @Deprecated public void handleActions(Map<String,Object> variables, Action.Container sender)
      Deprecated.
    • getActions

      @Deprecated public Action[] getActions(Object target, Object sender)
      Deprecated.
      Description copied from interface: Action.Handler
      Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.
      Specified by:
      getActions in interface Action.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, Object sender, Object target)
      Deprecated.
      Description copied from interface: Action.Handler
      Not supported. See Classic Component Pack documentation in https://vaadin.com/docs/latest/flow/upgrading/legacy-component-pack for mitigation options.
      Specified by:
      handleAction in interface Action.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.