tabular-data-information-wi.../src/main/java/org/gcube/portlets/user/td/informationwidget/client/InformationEntry.java

30 lines
807 B
Java

package org.gcube.portlets.user.td.informationwidget.client;
import com.allen_sauer.gwt.log.client.Log;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.web.bindery.event.shared.EventBus;
import com.google.web.bindery.event.shared.SimpleEventBus;
/**
*
* @author Giancarlo Panichi
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class InformationEntry implements EntryPoint {
public void onModuleLoad() {
EventBus eventBus = new SimpleEventBus();
TabularResourceProperties trProperties = new TabularResourceProperties(
"TRProperties", eventBus);
trProperties.setHeadingText("Tabular Resource Properties");
RootPanel.get().add(trProperties);
Log.info("" + trProperties);
}
}