tabular-data-csv-export-widget/src/main/java/org/gcube/portlets/user/td/csvexportwidget/client/CSVExportWizardTD.java

39 lines
745 B
Java

package org.gcube.portlets.user.td.csvexportwidget.client;
import org.gcube.portlets.user.td.gwtservice.shared.csv.CSVExportSession;
import org.gcube.portlets.user.td.wizardwidget.client.WizardWindow;
import com.google.web.bindery.event.shared.EventBus;
/**
*
*/
public class CSVExportWizardTD extends WizardWindow {
protected CSVExportSession exportSession;
/**
* The id of the {@link CSVTarget} to use.
* @param targetId
*/
public CSVExportWizardTD(String title, EventBus eventBus) {
super(title,eventBus);
exportSession= new CSVExportSession();
CSVExportConfigCard csvExportConfigCard=new CSVExportConfigCard(exportSession);
addCard(csvExportConfigCard);
csvExportConfigCard.setup();
}
}