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(); } }