package org.gcube.portlets.widgets.wsexplorer.client; import com.google.gwt.core.client.EntryPoint; /** * Entry point classes define onModuleLoad(). */ public class WorkspaceExplorerEntryPoint implements EntryPoint { /** * This is the entry point method. */ public void onModuleLoad() { // final WorkspaceExplorerSelectDialog navigator = new WorkspaceExplorerSelectDialog("WorkpspaceExplorer", false); // // WorskpaceExplorerSelectNotificationListener listener = new WorskpaceExplorerSelectNotificationListener() { // // @Override // public void onSelectedItem(Item item) { // GWT.log("onSelectedItem: "+item); // navigator.hide(); // } // // @Override // public void onFailed(Throwable throwable) { // GWT.log("onFailed.."); // // } // // @Override // public void onAborted() { // GWT.log("onAborted.."); // // } // // @Override // public void onNotValidSelection() { // GWT.log("onNotValidSelection.."); // // } // }; // // navigator.addWorkspaceExplorerSelectNotificationListener(listener); // navigator.show(); } }