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; public class ColumnWidgetEntry implements EntryPoint { public void onModuleLoad() { TRId trId=new TRId(); //For example Tabular Resource 1 and table 1 trId.setId("1"); trId.setTableId("1"); RemoveColumnDialog dialog=new RemoveColumnDialog(trId); dialog.show(); ChangeLabelColumnDialog changeLabel=new ChangeLabelColumnDialog(trId); changeLabel.show(); ChangeToAnnotationColumnDialog changeToAnnotation=new ChangeToAnnotationColumnDialog(trId); changeToAnnotation.show(); ChangeColumnTypeDialog changeColumnType=new ChangeColumnTypeDialog(trId); changeColumnType.show(); Log.info("Hello!"); } }