com.sksamuel.jqm4gwt.events.HasTapHandlers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqm4gwt-standalone Show documentation
Show all versions of jqm4gwt-standalone Show documentation
jqm4gwt bundled with all of its dependencies
The newest version!
package com.sksamuel.jqm4gwt.events;
import com.google.gwt.event.shared.HandlerRegistration;
/**
* A widget that implements this interface provides registration for
* {@link TapHandler} instances.
*
* @author Andrei Costescu [email protected] 31 Oct 2013
*/
public interface HasTapHandlers extends HasJQMHandlers {
/**
* Adds a {@link TapEvent} handler.
*
* @param handler
* the tap handler
* @return {@link HandlerRegistration} used to remove this handler.
*/
HandlerRegistration addTapHandler(TapHandler handler);
}