Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-column-widget@94289 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-04-04 08:28:03 +00:00
parent 06941aa60b
commit 9ea3d4554e
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,6 @@
package org.gcube.portlets.user.td.columnwidget.client.batch;
import org.gcube.portlets.user.td.columnwidget.client.progress.ReplaceBatchColumnProgressDialog;
import org.gcube.portlets.user.td.columnwidget.client.progress.ReplaceColumnProgressDialog;
import org.gcube.portlets.user.td.columnwidget.client.resources.ResourceBundle;
import org.gcube.portlets.user.td.columnwidget.client.utils.UtilsGXT3;
import org.gcube.portlets.user.td.gwtservice.client.rpc.TDGWTServiceAsync;
@ -75,8 +74,8 @@ public class ReplaceBatchDialog extends Window {
}
protected void startBatchReplace(ReplaceBatchColumnSession rbcSession){
TDGWTServiceAsync.INSTANCE.startReplaceBatchColumn(rbcSession,
protected void startBatchReplace(ReplaceBatchColumnSession replaceBatchColumnSession){
TDGWTServiceAsync.INSTANCE.startReplaceBatchColumn(replaceBatchColumnSession,
new AsyncCallback<Void>() {
public void onFailure(Throwable caught) {
@ -89,7 +88,7 @@ public class ReplaceBatchDialog extends Window {
public void onSuccess(Void v) {
Log.trace("Started batch replace ");
callReplaceBatchColumnProgressDialog();
}

View File

@ -420,8 +420,8 @@ public class ReplaceBatchPanel extends FramedPanel implements
}
protected void startReplaceBatch(ArrayList<ReplaceEntry> effectiveReplaceList){
ReplaceBatchColumnSession rbcSession=new ReplaceBatchColumnSession(trId, column, effectiveReplaceList, column.isViewColumn());
ReplaceBatchColumnSession replaceBatchColumnSession=new ReplaceBatchColumnSession(trId, column, effectiveReplaceList, column.isViewColumn());
parent.startBatchReplace(replaceBatchColumnSession);
}