
fr.lteconsulting.hexa.client.event.SynchronizationDownlinkEvent Maven / Gradle / Ivy
The newest version!
package fr.lteconsulting.hexa.client.event;
import com.google.gwt.event.shared.EventHandler;
import com.google.gwt.event.shared.GwtEvent;
public class SynchronizationDownlinkEvent extends GwtEvent
{
public static final Type TYPE = new Type();
public interface Handler extends EventHandler
{
void onSynchronizationDownlinkEvent();
}
@Override
protected void dispatch( Handler handler )
{
handler.onSynchronizationDownlinkEvent();
}
@Override
public com.google.gwt.event.shared.GwtEvent.Type getAssociatedType()
{
return TYPE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy