package org.gcube.portlets.widgets.wstaskexecutor.client; import org.gcube.portlets.widgets.wstaskexecutor.client.view.WsTaskExecutorWidgetViewManager; import com.google.gwt.event.shared.HandlerManager; /** * Entry point classes define onModuleLoad(). */ public class WsTaskExecutorWidget { /** * The message displayed to the user when the server cannot be reached or * returns an error. */ private static final String SERVER_ERROR = "An error occurred while " + "attempting to contact the server. Please check your network " + "connection and try again."; /** * Create a remote service proxy to talk to the server-side Greeting * service. */ public static final WsTaskExecutorWidgetServiceAsync greetingService = WsTaskExecutorWidgetServiceAsync.Util.getInstance(); /** The Constant eventBus. */ public final static HandlerManager eventBus = new HandlerManager(null); private WsTaskExecutorWidgetViewManager viewManager = new WsTaskExecutorWidgetViewManager(); /** * */ public WsTaskExecutorWidget() { // TODO Auto-generated constructor stub } }