Example usage for com.google.gwt.dom.client BrowserEvents GESTUREEND

List of usage examples for com.google.gwt.dom.client BrowserEvents GESTUREEND

Introduction

In this page you can find the example usage for com.google.gwt.dom.client BrowserEvents GESTUREEND.

Prototype

String GESTUREEND

To view the source code for com.google.gwt.dom.client BrowserEvents GESTUREEND.

Click Source Link

Usage

From source file:gwt.material.design.client.MaterialWidgetTestCase.java

License:Apache License

public void fireGestureEndEvent(HasHandlers widget) {
    DomEvent.fireNativeEvent(Document.get().createHtmlEvent(BrowserEvents.GESTUREEND, false, false), widget);
}