package org.gcube.portlets.user.td.columnwidget.client; import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.core.client.EntryPoint; /** * * @author "Giancarlo Panichi" * g.panichi@isti.cnr.it * */ public class ColumnWidgetEntry implements EntryPoint { public void onModuleLoad() { //EventBus eventBus= new SimpleEventBus(); TRId trId=new TRId(); //For example Tabular Resource 7 and table 402 trId.setId("7"); trId.setTableId("402"); /* RemoveColumnDialog dialog=new RemoveColumnDialog(trId); dialog.show(); ChangeToAnnotationColumnDialog changeToAnnotation=new ChangeToAnnotationColumnDialog(trId); changeToAnnotation.show(); */ /*ChangeColumnTypeDialog changeColumnType=new ChangeColumnTypeDialog(trId,eventBus); changeColumnType.show(); */ /*ChangeColumnTypeProgressDialog c=new ChangeColumnTypeProgressDialog(eventBus); c.addProgressDialogListener(changeColumnType); c.show(); */ /*DialogCodelistSelection dcs=new DialogCodelistSelection(); dcs.show(); */ Log.info("Hello!"); } }