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

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

Introduction

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

Prototype

String GESTURECHANGE

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

Click Source Link

Usage

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

License:Apache License

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