package org.gcube.portlets.user.td.jsonexportwidget.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: g.panichi@isti.cnr.it * */ public class JSONExportWidgetTD extends WizardWindow { protected JSONExportSession exportSession; /** * * @param title * @param eventBus */ public JSONExportWidgetTD(String title, EventBus eventBus) { super(title,eventBus); exportSession= new JSONExportSession(); JSONExportConfigCard jsonExportConfigCard=new JSONExportConfigCard(exportSession); addCard(jsonExportConfigCard); jsonExportConfigCard.setup(); } }