You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
520 B
Java

package org.gcube.portlets.user.td.codelistmappingimportwidget.client;
import com.allen_sauer.gwt.log.client.Log;
import com.google.gwt.core.client.EntryPoint;
import com.google.web.bindery.event.shared.SimpleEventBus;
public class CodelistMappingImportWizardTDEntry implements EntryPoint {
public void onModuleLoad() {
SimpleEventBus eventBus=new SimpleEventBus();
CodelistMappingImportWizardTD importWizard= new CodelistMappingImportWizardTD("CSVImport",eventBus);
Log.info(importWizard.getId());
}
}