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