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

39 lines
655 B
Java

package org.gcube.portlets.user.td.csvexportwidget.client;
import org.gcube.portlets.user.td.gwtservice.shared.csv.CSVImportSession;
import org.gcube.portlets.user.td.wizardwidget.client.WizardWindow;
/**
*
*/
public class CSVExportWizardTD extends WizardWindow {
protected CSVImportSession importSession;
/**
* The id of the {@link CSVTarget} to use.
* @param targetId
*/
public CSVExportWizardTD(String title) {
super(title);
importSession= new CSVImportSession();
SourceSelectionCard sourceSelection= new SourceSelectionCard(importSession);
addCard(sourceSelection);
sourceSelection.setup();
}
}