package org.gcube.portlets.widgets.ckandatapublisherwidget.client.events; import com.google.gwt.event.shared.GwtEvent; /** * Called on close form. * @author Costantino Perciante at ISTI-CNR (costantino.perciante@isti.cnr.it) */ public class CloseCreationFormEvent extends GwtEvent{ public static Type TYPE = new Type(); public CloseCreationFormEvent() { super(); } @Override public Type getAssociatedType() { return TYPE; } @Override protected void dispatch(CloseCreationFormEventHandler handler) { handler.onClose(this); } }