From 60067bdd21233eb2b23e637ad5a72c2c0e9a58e0 Mon Sep 17 00:00:00 2001 From: Francesco Mangiacrapa Date: Tue, 8 May 2018 10:25:54 +0000 Subject: [PATCH] Enhancement on Task #10070 GUI enhancement git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/widgets/ws-task-executor-widget@167362 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../client/WsTaskExecutorWidget.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/gcube/portlets/widgets/wstaskexecutor/client/WsTaskExecutorWidget.java b/src/main/java/org/gcube/portlets/widgets/wstaskexecutor/client/WsTaskExecutorWidget.java index 5ae9a75..42a1f0f 100644 --- a/src/main/java/org/gcube/portlets/widgets/wstaskexecutor/client/WsTaskExecutorWidget.java +++ b/src/main/java/org/gcube/portlets/widgets/wstaskexecutor/client/WsTaskExecutorWidget.java @@ -88,9 +88,11 @@ public class WsTaskExecutorWidget { /** - * @param folder - * @param conf - * @throws Exception + * Perform run task. + * + * @param folder the folder + * @param conf the conf + * @throws Exception the exception */ public void performRunTask(WsFolder folder, TaskConfiguration conf) throws Exception { @@ -104,13 +106,14 @@ public class WsTaskExecutorWidget { //WsTaskExecutorWidget.wsTaskService.runTask() } + /** - * Show task configurations folder info. + * Show task configurations for folder. * * @param folder the folder * @throws Exception the exception */ - public void showTaskConfigurationsFolderInfo(final WsFolder folder) throws Exception { + public void showTaskConfigurationsForFolder(final WsFolder folder) throws Exception { if(folder==null || folder.getFolderId()==null) throw new Exception("Invalid parameter folder null"); @@ -130,7 +133,7 @@ public class WsTaskExecutorWidget { LoaderIcon loader = new LoaderIcon("Checking folder configurations..."); box.add(loader); - GWT.log("Performing isItemSynched: "+folder.getFolderId()); + GWT.log("Performing checkItemTaskConfigurations: "+folder.getFolderId()); WsTaskExecutorWidget.wsTaskService.checkItemTaskConfigurations(folder.getFolderId(), new AsyncCallback>() {