Example usage for com.vaadin.shared.communication ClientRpc interface-usage

List of usage examples for com.vaadin.shared.communication ClientRpc interface-usage

Introduction

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

Usage

From source file com.bosch.example.ui.component.client.AutocompleteTextFieldClientRpc.java

/**
 * Client RPC for the AutocompleteTextField.
 *
 */
public interface AutocompleteTextFieldClientRpc extends ClientRpc {

From source file com.cbnserver.gwtp4vaadin.core.googleanalytics.client.GoogleAnalyticsRPC.java

/**
 * Created with IntelliJ IDEA.
 * User: hauber_c
 * Date: 05/01/13
 * Time: 02:15
 */

From source file com.haulmont.cuba.web.toolkit.ui.client.appui.AppUIClientRpc.java

public interface AppUIClientRpc extends ClientRpc {

    /**
     * Discard next events in client-side event queue, exclude CubaTimer events and polling.
     */
    @NoLayout

From source file com.haulmont.cuba.web.toolkit.ui.client.button.CubaButtonClientRpc.java

public interface CubaButtonClientRpc extends ClientRpc {

    @NoLayout
    void onClickHandled();
}

From source file com.haulmont.cuba.web.toolkit.ui.client.clientmanager.CubaClientManagerClientRpc.java

public interface CubaClientManagerClientRpc extends ClientRpc {

    String COMMUNICATION_ERROR_CAPTION_KEY = "communicationErrorCaption";

    String COMMUNICATION_ERROR_MESSAGE_KEY = "communicationErrorMessage";

From source file com.haulmont.cuba.web.toolkit.ui.client.cubascrollboxlayout.CubaScrollBoxLayoutClientRpc.java

public interface CubaScrollBoxLayoutClientRpc extends ClientRpc {

    void setScrollTop(int scrollTop);

    void setScrollLeft(int scrollLeft);
}

From source file com.haulmont.cuba.web.toolkit.ui.client.downloader.CubaFileDownloaderClientRPC.java

public interface CubaFileDownloaderClientRPC extends ClientRpc {

    @NoLayout
    void downloadFile(String resourceId);

    @NoLayout

From source file com.haulmont.cuba.web.toolkit.ui.client.fileupload.CubaFileUploadClientRpc.java

public interface CubaFileUploadClientRpc extends ClientRpc {

    void continueUploading();
}

From source file com.haulmont.cuba.web.toolkit.ui.client.renderers.componentrenderer.focuspreserve.FocusPreservingRefreshClientRpc.java

/**
 * Provides rpc-methods to save and restore the current focus of the grid. This
 * is needed to preserve the current focus when issuing a full rerendering of
 * the grid.
 *
 * <ul>

From source file com.haulmont.cuba.web.toolkit.ui.client.sourcecodeeditor.CubaSourceCodeEditorClientRpc.java

public interface CubaSourceCodeEditorClientRpc extends ClientRpc {
    void resetEditHistory();
}