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

35 lines
786 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;
/**
*
* @author Giancarlo Panichi Panichi
*
*
*/
public class CSVExportWizardTD extends WizardWindow {
private static final String WIZARDWIDTH = "844px";
private CSVExportSession exportSession;
public CSVExportWizardTD(String title, EventBus eventBus) {
super(title, eventBus);
setWidth(WIZARDWIDTH);
exportSession = new CSVExportSession();
CSVExportConfigCard csvExportConfigCard = new CSVExportConfigCard(
exportSession);
addCard(csvExportConfigCard);
csvExportConfigCard.setup();
}
}