de.swm.gwt.client.progressbar.IProgressBarWaitDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-gwt-client Show documentation
Show all versions of swm-gwt-client Show documentation
Plain GWT Swm erweiterungen, auch zur benutzung in mobilen Geraeten
The newest version!
package de.swm.gwt.client.progressbar;
import com.google.gwt.core.client.RunAsyncCallback;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* Blendet einen Wartedialog an.
*
* @author Wiese.Daniel
* copyright (C) 2010 - 2011, SWM Services GmbH
*
*/
public interface IProgressBarWaitDialog {
/**
* Startet den Progress-Bar dialog und wrapped einen Callback.
*
* @param
* der Typ das callbacks
* @param callbackToExecute
* der callback der ausgefuehrt wird und eventuell zurueckgerollt wird.
* @return der callback
*/
AsyncCallback start(AsyncCallback callbackToExecute);
/**
* Startet die Progress-Bar um code splitting zu realisieren.
* @param callbackToExecute der asynchrone callback.
*/
void start(final RunAsyncCallback callbackToExecute);
}