com.vaadin.client.communication.ReconnectDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2000-2016 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.client.communication;
import com.vaadin.client.ApplicationConnection;
/**
* Interface which must be implemented by the reconnect dialog
*
* @since 7.6
* @author Vaadin Ltd
*/
public interface ReconnectDialog {
/**
* Sets the main text shown in the dialog
*
* @param text
* the text to show
*/
void setText(String text);
/**
* Sets the reconnecting state, which is true if we are trying to
* re-establish a connection with the server.
*
* @param reconnecting
* true if we are trying to re-establish the server connection,
* false if we have given up
*/
void setReconnecting(boolean reconnecting);
/**
* Checks if the reconnect dialog is visible to the user
*
* @return true if the user can see the dialog, false otherwise
*/
boolean isVisible();
/**
* Shows the dialog to the user
*
* @param connection
* the application connection this is related to
*/
void show(ApplicationConnection connection);
/**
* Hides the dialog from the user
*/
void hide();
/**
* Sets the modality of the dialog. If the dialog is set to modal, it will
* prevent the usage of the application while the dialog is being shown. If
* not modal, the user can continue to use the application as normally and
* all server events will be queued until connection has been
* re-established.
*
* @param modal
* true to make the dialog modal, false to allow usage while
* dialog is shown
*/
void setModal(boolean modal);
/**
* Checks the modality of the dialog.
*
* @see #setModal(boolean)
* @return true if the dialog is modal, false otherwise
*/
boolean isModal();
/**
* Called once after initialization to allow the reconnect dialog to preload
* required resources, which might not be available when the server
* connection is gone
*/
void preload(ApplicationConnection connection);
}