tabular-data-codelistmappin.../src/main/java/org/gcube/portlets/user/td/codelistmappingimportwidget/client/CodelistMappingImportWizard...

35 lines
823 B
Java
Raw Normal View History

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