tabular-data-map-widget/src/main/java/org/gcube/portlets/user/td/mapwidget/client/MapWidgetTD.java

43 lines
812 B
Java

package org.gcube.portlets.user.td.mapwidget.client;
import org.gcube.portlets.user.td.gwtservice.shared.json.JSONExportSession;
import org.gcube.portlets.user.td.wizardwidget.client.WizardWindow;
import com.google.web.bindery.event.shared.EventBus;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class MapWidgetTD extends WizardWindow {
protected JSONExportSession exportSession;
/**
*
* @param title
* @param eventBus
*/
public MapWidgetTD(String title, EventBus eventBus) {
super(title,eventBus);
exportSession= new JSONExportSession();
MapWidgetConfigCard jsonExportConfigCard=new MapWidgetConfigCard(exportSession);
addCard(jsonExportConfigCard);
jsonExportConfigCard.setup();
}
}