tabular-data-json-export-wi.../src/main/java/org/gcube/portlets/user/td/jsonexportwidget/client/JSONExportWidgetTD.java

43 lines
835 B
Java
Raw Normal View History

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: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
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();
}
}