/* * This is part of Geomajas, a GIS framework, http://www.geomajas.org/. * * Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium. * * The program is available in open source according to the GNU Affero * General Public License. All contributions in this program are covered * by the Geomajas Contributors License Agreement. For full licensing * details, see LICENSE.txt in the project root. */ package org.geomajas.gwt.client.event; import org.geomajas.annotation.Api; import com.google.gwt.event.dom.client.TouchEvent; /** * Represents a "touchified" pointer cancel event. * * @author Jan De Moerloose * @since 2.4.0 */ @Api(allMethods = true) public class PointerTouchCancelEvent extends TouchEvent<PointerTouchCancelHandler> { /** * Event type for touch Cancel events. Represents the meta-data associated with this event. */ private static final Type<PointerTouchCancelHandler> TYPE = new Type<PointerTouchCancelHandler>( PointerEventType.POINTER_CANCEL.getType(), new PointerTouchCancelEvent()); /** * Gets the event type associated with touch Cancel events. * * @return the handler type */ public static Type<PointerTouchCancelHandler> getType() { return TYPE; } @Override public Type<PointerTouchCancelHandler> getAssociatedType() { return TYPE; } @Override protected void dispatch(PointerTouchCancelHandler handler) { handler.onPointerTouchCancel(this); } }