Uses of Class
com.vaadin.event.Action
-
Packages that use Action Package Description com.vaadin.event com.vaadin.ui -
-
Uses of Action in com.vaadin.event
Subclasses of Action in com.vaadin.event Modifier and Type Class Description class
ShortcutAction
Shortcuts are a special type ofAction
s used to create keyboard shortcuts.class
ShortcutListener
Fields in com.vaadin.event with type parameters of type Action Modifier and Type Field Description protected KeyMapper<Action>
ActionManager. actionMapper
Action mapperprotected HashSet<Action>
ActionManager. ownActions
List of action handlers.Methods in com.vaadin.event with type parameters of type Action Modifier and Type Method Description <T extends Action & Action.Listener>
voidAction.Notifier. addAction(T action)
<T extends Action & Action.Listener>
voidActionManager. addAction(T action)
<T extends Action & Action.Listener>
voidAction.Notifier. removeAction(T action)
<T extends Action & Action.Listener>
voidActionManager. removeAction(T action)
Methods in com.vaadin.event that return Action Modifier and Type Method Description Action[]
Action.Handler. getActions(Object target, Object sender)
Gets the list of actions applicable to this handler.Action[]
ActionManager. getActions(Object target, Object sender)
Methods in com.vaadin.event with parameters of type Action Modifier and Type Method Description void
Action.Handler. handleAction(Action action, Object sender, Object target)
Handles an action for the given target.void
ActionManager. handleAction(Action action, Object sender, Object target)
void
ConnectorActionManager. handleAction(Action action, Object sender, Object target)
-
Uses of Action in com.vaadin.ui
Subclasses of Action in com.vaadin.ui Modifier and Type Class Description static class
AbstractField.FocusShortcut
A ready-madeShortcutListener
that focuses the givenComponent.Focusable
(usually aField
) when the keyboard shortcut is invoked.static class
Button.ClickShortcut
AShortcutListener
specifically made to define a keyboard shortcut that invokes a click on the given button.static class
Window.CloseShortcut
AShortcutListener
specifically made to define a keyboard shortcut that closes the window.Methods in com.vaadin.ui with type parameters of type Action Modifier and Type Method Description <T extends Action & Action.Listener>
voidForm. addAction(T action)
Deprecated.<T extends Action & Action.Listener>
voidPanel. addAction(T action)
<T extends Action & Action.Listener>
voidUI. addAction(T action)
<T extends Action & Action.Listener>
voidForm. removeAction(T action)
Deprecated.<T extends Action & Action.Listener>
voidPanel. removeAction(T action)
<T extends Action & Action.Listener>
voidUI. removeAction(T action)
-