package org.gcube.portlets.user.td.sharewidget.client; import org.gcube.portlets.user.td.gwtservice.shared.user.UserInfo; import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.core.client.EntryPoint; import com.google.web.bindery.event.shared.EventBus; import com.google.web.bindery.event.shared.SimpleEventBus; /** * * @author Giancarlo Panichi * email: g.panichi@isti.cnr.it * */ public class ShareWidgetEntry implements EntryPoint { public void onModuleLoad() { TRId trId=new TRId("1"); EventBus eventBus=new SimpleEventBus(); UserInfo userInfo=new UserInfo(); @SuppressWarnings("unused") TRShare trShare=new TRShare(userInfo,trId,eventBus); Log.info("Hello!"); } }