All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.lteconsulting.hexa.client.appcache.AppCacheStatusChangedEvent Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting.hexa.client.appcache;

import com.google.gwt.event.shared.EventHandler;
import com.google.gwt.event.shared.GwtEvent;

public class AppCacheStatusChangedEvent extends GwtEvent
{
	public static final Type TYPE = new Type();

	public interface Handler extends EventHandler
	{
		void onAppCacheStatusChanged( AppCacheStatus status );
	}

	private final AppCacheStatus status;

	public AppCacheStatusChangedEvent( AppCacheStatus status )
	{
		this.status = status;
	}

	@Override
	protected void dispatch( Handler handler )
	{
		handler.onAppCacheStatusChanged( status );
	}

	@Override
	public com.google.gwt.event.shared.GwtEvent.Type getAssociatedType()
	{
		return TYPE;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy