Blame | Last modification | View Log | RSS feed
package in.shop2020.hotspot.dashbaord.client.event;import com.google.gwt.event.shared.GwtEvent;import com.google.gwt.event.shared.GwtEvent.Type;public class LoadAlertsEvent extends GwtEvent<LoadAlertsEventHandler>{private static Type<LoadAlertsEventHandler> TYPE;public static Type<LoadAlertsEventHandler> getType(){return TYPE != null ? TYPE : (TYPE = new Type<LoadAlertsEventHandler>());}@Overrideprotected void dispatch(LoadAlertsEventHandler handler) {// TODO Auto-generated method stubhandler.onLoadAlerts(this);}@Overridepublic com.google.gwt.event.shared.GwtEvent.Type<LoadAlertsEventHandler> getAssociatedType() {// TODO Auto-generated method stubreturn getType();}}