Subversion Repositories SmartDukaan

Rev

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>());
        }
        
        @Override
        protected void dispatch(LoadAlertsEventHandler handler) {
                // TODO Auto-generated method stub
                handler.onLoadAlerts(this);
        }

        @Override
        public com.google.gwt.event.shared.GwtEvent.Type<LoadAlertsEventHandler> getAssociatedType() {
                // TODO Auto-generated method stub
                return getType();
        }

}