package com.google.gwt.nextgen.media.client.event; import com.google.gwt.event.shared.HandlerRegistration; import com.google.gwt.event.shared.HasHandlers; /** * A widget that implements this interface is a public source of * {@link EmptiedEvent} events. */ public interface HasEmptiedHandlers extends HasHandlers { /** * Adds a {@link EmptiedEvent} handler. * * @param handler the handler * @return the registration for the event */ HandlerRegistration addEmptiedHandler(EmptiedHandler handler); }