Example usage for com.vaadin.shared.communication SharedState subclass-usage

List of usage examples for com.vaadin.shared.communication SharedState subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.shared.communication SharedState subclass-usage.

Usage

From source file com.haulmont.cuba.web.toolkit.ui.client.profiler.ScreenClientProfilerState.java

public class ScreenClientProfilerState extends SharedState {
    @NoLayout
    public int flushEventsCount;
    @NoLayout
    public int flushTimeout;
}

From source file com.haulmont.cuba.web.widgets.client.addons.aceeditor.SuggesterState.java

@SuppressWarnings("serial")
public class SuggesterState extends SharedState {
    public boolean suggestOnDot = true;
    // TODO?
    public boolean showDescriptions = true;
}

From source file com.haulmont.cuba.web.widgets.client.addons.dragdroplayouts.ui.interfaces.DDLayoutState.java

public class DDLayoutState extends SharedState {

    // The current drag mode, default is dragging is not supported
    public LayoutDragMode dragMode = LayoutDragMode.NONE;

    // Are the iframes shimmed

From source file com.wcs.wcslib.vaadin.widget.filtertablestate.shared.FilterTableStateSharedState.java

/**
 *
 * @author gergo
 */
public class FilterTableStateSharedState extends SharedState {

From source file de.metas.procurement.webui.widgetset.client.TextOverlayState.java

@SuppressWarnings("serial")
public class TextOverlayState extends SharedState {
    public String text = null;
}

From source file edu.kit.dama.ui.admin.client.HelpState.java

/**
 *
 * @author mf6319
 */
public class HelpState extends SharedState {

From source file eu.maxschuster.vaadin.localstorage.shared.LocalStorageState.java

/**
 * {@link SharedState} for {@link LocalStorage}.
 * @author Max Schuster <dev@maxschutser.eu>
 */
@SuppressWarnings("serial")
public class LocalStorageState extends SharedState {

From source file fi.jasoft.draganddrop.shared.DragAndDropState.java

public class DragAndDropState extends SharedState {

    public List<DragAndDropOperation> disabled = new ArrayList<DragAndDropOperation>();

    public Connector fromLayout;

From source file fi.jasoft.dragdroplayouts.client.ui.interfaces.DDLayoutState.java

public class DDLayoutState extends SharedState {

    // The current drag mode, default is dragging is not supported
    public LayoutDragMode dragMode = LayoutDragMode.NONE;

    // Are the iframes shimmed

From source file fi.jasoft.remoteconnection.shared.RemoteConnectionState.java

/**
 * Shared state for the remote connection server side implementation
 * 
 * @author John Ahlroos
 */
@SuppressWarnings("serial")