package org.gcube.portlets.user.td.statisticalwidget.client; import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; import com.allen_sauer.gwt.log.client.Log; import com.google.web.bindery.event.shared.EventBus; /** * * Statistical Widget * * * @author "Giancarlo Panichi" g.panichi@isti.cnr.it * */ public class StatisticalWidget { protected EventBus eventBus; protected TRId trId; /** * * @param trId * @param eventBus */ public StatisticalWidget(TRId trId, EventBus eventBus) { this.trId = trId; this.eventBus = eventBus; Log.debug("Statistical Widget: " + trId); } }