Interface BrowserNodeActionProvider<T>
- Type Parameters:
T- the type of node bound toBrowserNodeHandler
public interface BrowserNodeActionProvider<T>
Interface providing methods for node based actions.
Methods will be used by related
(See usages for existing application types.)
BrowserNodeHandler.
(See usages for existing application types.)
- Since:
- 4.2.426
-
Method Summary
-
Method Details
-
onContextMenu
Provides a list of actions that should be displayed in browser context menu.- Parameters:
nodes- currently selected nodes or context menu event target- Returns:
- the list of actions based on given nodes
- Since:
- 4.2.426
-
onClick
Provides an action that should be executed on browser click event on the specified node.- Parameters:
node- the click event target- Returns:
- a click action
- Since:
- 4.2.426
-