Minor Updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-table-widget@92744 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-06 11:46:22 +00:00 committed by Giancarlo Panichi
parent 13dec1a6f4
commit d09cf865ee
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
package org.gcube.portlets.user.td.tablewidget.client.rows;
import java.util.ArrayList;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
import com.google.web.bindery.event.shared.EventBus;
@ -7,9 +9,11 @@ import com.google.web.bindery.event.shared.EventBus;
public class DeleteRows {
protected TRId trId;
protected EventBus eventBus;
protected ArrayList<String> rows;
public DeleteRows(TRId trId, EventBus eventBus) {
public DeleteRows(TRId trId, ArrayList<String> rows,EventBus eventBus) {
this.trId = trId;
this.rows=rows;
this.eventBus = eventBus;
}
}