package org.gcube.portlets.user.dataminermanager.client.events; import com.google.gwt.event.shared.GwtEvent; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.HasHandlers; public class JobsGridGotDirtyEvent extends GwtEvent { public static Type TYPE = new Type(); public interface JobsGridGotDirtyHandler extends EventHandler { void onJobsGridGotDirty(JobsGridGotDirtyEvent event); } public JobsGridGotDirtyEvent() { } @Override protected void dispatch(JobsGridGotDirtyHandler handler) { handler.onJobsGridGotDirty(this); } @Override public Type getAssociatedType() { return TYPE; } public static Type getType() { return TYPE; } public static void fire(HasHandlers source) { source.fireEvent(new JobsGridGotDirtyEvent()); } }