package org.gcube.portlets.gcubeckan.gcubeckandatacatalog.client.event; import com.google.gwt.event.shared.GwtEvent; /** * The Class IFrameInstanciedEvent. * * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it Jun 23, 2016 */ public class IFrameInstanciedEvent extends GwtEvent { public static Type TYPE = new Type(); /** * Instantiates a new insert metadata event. */ public IFrameInstanciedEvent() { } /** * Gets the associated type. * * @return the associated type */ /* * (non-Javadoc) * * @see com.google.gwt.event.shared.GwtEvent#getAssociatedType() */ @Override public Type getAssociatedType() { return TYPE; } /** * Dispatch. * * @param handler the handler */ /* * (non-Javadoc) * * @see * com.google.gwt.event.shared.GwtEvent#dispatch(com.google.gwt.event.shared. * EventHandler) */ @Override protected void dispatch(IFrameInstanciedEventHandler handler) { handler.onNewInstance(this); } }