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

38 lines
933 B
Java

package org.gcube.portlets.user.td.codelistmappingimportwidget.client;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
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;
/**
*
* @author "Giancarlo Panichi"
*
*/
public class CodelistMappingImportWizardTD extends WizardWindow {
protected CSVImportSession importSession;
//private CSVImportWizardTD wizard;
/**
* The id of the {@link CSVTarget} to use.
* @param targetId
*/
public CodelistMappingImportWizardTD(TRId trId, String title, EventBus eventBus) {
super(title,eventBus);
importSession= new CSVImportSession();
//this.wizard=this;
SourceSelectionCard sourceSelection= new SourceSelectionCard(importSession);
addCard(sourceSelection);
sourceSelection.setup();
}
}