Example usage for com.google.gwt.event.dom.client GestureStartEvent getType

List of usage examples for com.google.gwt.event.dom.client GestureStartEvent getType

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client GestureStartEvent getType.

Prototype

public static Type<GestureStartHandler> getType() 

Source Link

Document

Gets the event type associated with gesture start events.

Usage

From source file:com.github.gwtbootstrap.client.ui.Button.java

License:Apache License

/**
 * {@inheritDoc}
 */
public HandlerRegistration addGestureStartHandler(GestureStartHandler handler) {
    return addDomHandler(handler, GestureStartEvent.getType());
}

From source file:fr.putnami.pwt.core.widget.client.Anchor.java

License:Open Source License

@Override
public HandlerRegistration addGestureStartHandler(GestureStartHandler handler) {
    return this.addDomHandler(handler, GestureStartEvent.getType());
}

From source file:fr.putnami.pwt.core.widget.client.base.AbstractInput.java

License:Open Source License

@Override
public com.google.gwt.event.shared.HandlerRegistration addGestureStartHandler(GestureStartHandler handler) {
    return this.addDomHandler(handler, GestureStartEvent.getType());
}

From source file:gwt.material.design.components.client.base.widget.MaterialWidget.java

License:Apache License

@Override
public HandlerRegistration addGestureStartHandler(GestureStartHandler handler) {
    return addDomHandler(event -> {
        if (isEnabled())
            handler.onGestureStart(event);
    }, GestureStartEvent.getType());

}

From source file:org.cruxframework.crux.smartfaces.client.input.NumberBox.java

License:Apache License

@Override
public HandlerRegistration addGestureStartHandler(GestureStartHandler handler) {
    return addDomHandler(handler, GestureStartEvent.getType());
}