We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.event.
Interface Action.Handler
All Superinterfaces:
All Known Implementing Classes:
Enclosing class:
- extends Serializable
public static interface Action.Handler
Interface implemented by classes who wish to handle actions.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd.
Method Summary | |
---|---|
Action[] |
getActions(Object target,
Object sender)
Gets the list of actions applicable to this handler. |
void |
handleAction(Action action,
Object sender,
Object target)
Handles an action for the given target. |
Method Detail |
---|
getActions
Action[] getActions(Object target,
Object sender)
- 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:
- the list of Action
Gets the list of actions applicable to this handler.
handleAction
void handleAction(Action action,
Object sender,
Object target)
- 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.
Handles an action for the given target. The handler method may just discard the action if it's not suitable.