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

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

Introduction

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

Prototype

String GESTURESTART

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

Click Source Link

Usage

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

License:Apache License

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