package org.gcube.portlets.user.td.codelistmappingimportwidget.client; import org.gcube.portlets.user.td.wizardwidget.client.WizardWindow; import org.gcube.portlets.user.td.gwtservice.shared.csv.CSVImportSession; import com.google.web.bindery.event.shared.EventBus; /** * */ public class CodelistMappingImportWizardTD extends WizardWindow { protected CSVImportSession importSession; //private CSVImportWizardTD wizard; /** * The id of the {@link CSVTarget} to use. * @param targetId */ public CodelistMappingImportWizardTD(String title, EventBus eventBus) { super(title,eventBus); importSession= new CSVImportSession(); //this.wizard=this; SourceSelectionCard sourceSelection= new SourceSelectionCard(importSession); addCard(sourceSelection); sourceSelection.setup(); } }