Example usage for com.vaadin.event Action.Container interface-usage

List of usage examples for com.vaadin.event Action.Container interface-usage

Introduction

In this page you can find the example usage for com.vaadin.event Action.Container interface-usage.

Usage

From source file com.haulmont.cuba.web.widgets.CubaCssActionsLayout.java

/**
 * CssLayout with separate action manager for shortcuts
 */
public class CubaCssActionsLayout extends CssLayout
        implements Action.Container, LegacyComponent, Layout.MarginHandler, Layout.SpacingHandler {
    protected ActionManager actionManager;

From source file com.haulmont.cuba.web.widgets.CubaDateField.java

public class CubaDateField extends com.vaadin.ui.DateField implements Action.Container {

    /**
     * Keeps track of the Actions added to this component, and manages the
     * painting and handling as well.
     */

From source file com.haulmont.cuba.web.widgets.CubaGridLayout.java

public class CubaGridLayout extends GridLayout implements Action.Container, LegacyComponent {

    protected ActionManager actionManager;

    public CubaGridLayout() {
        setHideEmptyRowsAndColumns(true);

From source file com.haulmont.cuba.web.widgets.CubaOrderedActionsLayout.java

/**
 * Ordered layout with CUBA features:
 * <ul>
 *  <li>separate action manager for shortcuts</li>
 *  <li>description icon support</li>
 * </ul>

From source file com.haulmont.cuba.web.widgets.CubaPickerField.java

public class CubaPickerField extends com.vaadin.v7.ui.CustomField implements Action.Container {

    protected Component field;
    protected Converter captionFormatter;

    protected List<Button> buttons = new ArrayList<>(4);

From source file com.haulmont.cuba.web.widgets.CubaTabSheet.java

public class CubaTabSheet extends DDTabSheet implements Action.Container, HasTabSheetBehaviour {

    private static final long serialVersionUID = -2956008661221108673L;

    protected Stack<Component> openedComponents = new Stack<>();

From source file com.haulmont.cuba.web.widgets.CubaTextField.java

public class CubaTextField extends TextField implements Action.Container, LegacyComponent {

    /**
     * Keeps track of the Actions added to this component, and manages the
     * painting and handling as well.
     */

From source file org.opennms.features.vaadin.topology.TopologyComponent.java

@ClientWidget(VTopologyComponent.class)
public class TopologyComponent extends AbstractComponent
        implements Action.Container, ItemSetChangeListener, PropertySetChangeListener, ValueChangeListener {

    public class MapManager {