List of usage examples for com.vaadin.event ActionManager ActionManager
public <T extends Component & Container & VariableOwner> ActionManager(T viewer)
From source file:com.haulmont.cuba.web.toolkit.ui.CubaComboBox.java
License:Apache License
@Override protected ActionManager getActionManager() { if (shortcutsManager == null) { shortcutsManager = new ActionManager(this); }/* w ww.j a va 2 s . c o m*/ return shortcutsManager; }
From source file:com.haulmont.cuba.web.toolkit.ui.CubaCssActionsLayout.java
License:Apache License
@Override protected ActionManager getActionManager() { if (actionManager == null) { actionManager = new ActionManager(this); }//from w w w .j a va2 s . c o m return actionManager; }