Example usage for com.vaadin.event ActionManager ActionManager

List of usage examples for com.vaadin.event ActionManager ActionManager

Introduction

In this page you can find the example usage for com.vaadin.event ActionManager ActionManager.

Prototype

public <T extends Component & Container & VariableOwner> ActionManager(T viewer) 

Source Link

Usage

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;
}