package de.tud.kom.socom.web.client.eventhandler; import com.google.gwt.event.shared.HandlerRegistration; import com.google.gwt.event.shared.HasHandlers; public interface HasFormSubmitCompleteHandlers extends HasHandlers { /** * Adds a {@link FormSubmitCompleteEvent} handler. * * @param handler the handler * @return the registration for the event */ HandlerRegistration addFormSubmitCompleteHandler(FormSubmitCompleteEventHandler handler); }