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

40 lines
762 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;
/**
*
*/
public class CSVExportWizardTD extends WizardWindow {
protected CSVExportSession exportSession;
/**
* The id of the {@link CSVTarget} to use.
* @param targetId
*/
public CSVExportWizardTD(String title) {
super(title);
exportSession= new CSVExportSession();
CSVExportConfigCard csvExportConfigCard=new CSVExportConfigCard(exportSession);
addCard(csvExportConfigCard);
DestinationSelectionCard destinationSelection= new DestinationSelectionCard(exportSession);
addCard(destinationSelection);
}
}