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

fr.lteconsulting.hexa.client.event.UserLoggedInEvent 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 UserLoggedInEvent extends GwtEvent
{
	public interface Handler extends EventHandler
	{
		public void onUserLoggedIn( UserLoggedInEvent event );
	}

	public UserLoggedInEvent()
	{
	}

	protected void dispatch( UserLoggedInEvent.Handler handler )
	{
		handler.onUserLoggedIn( this );
	}

	public GwtEvent.Type getAssociatedType()
	{
		return TYPE;
	}

	public static final GwtEvent.Type TYPE = new GwtEvent.Type();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy