diff --git a/src/main/java/org/gcube/portlets/widgets/wsexplorer/client/WorkspaceExplorerEntryPoint.java b/src/main/java/org/gcube/portlets/widgets/wsexplorer/client/WorkspaceExplorerEntryPoint.java index 323b244..d7bcec1 100644 --- a/src/main/java/org/gcube/portlets/widgets/wsexplorer/client/WorkspaceExplorerEntryPoint.java +++ b/src/main/java/org/gcube/portlets/widgets/wsexplorer/client/WorkspaceExplorerEntryPoint.java @@ -18,36 +18,36 @@ public class WorkspaceExplorerEntryPoint implements EntryPoint { */ 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(); +// 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(); } }