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

44 lines
796 B
Java

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 Panichi
*
*
*/
public class JSONExportWidgetTD extends WizardWindow {
protected JSONExportSession exportSession;
protected String WIZARDWIDTH = "844px";
public JSONExportWidgetTD(String title, EventBus eventBus) {
super(title,eventBus);
setWidth(WIZARDWIDTH);
exportSession= new JSONExportSession();
JSONExportConfigCard jsonExportConfigCard=new JSONExportConfigCard(exportSession);
addCard(jsonExportConfigCard);
jsonExportConfigCard.setup();
}
}