Package org.jboss.errai.ui.cordova.events.touch.longtap

Examples of org.jboss.errai.ui.cordova.events.touch.longtap.LongTapRecognizer


  public GestureUtility(Widget source) {
    this.source = source;
  }

  public void addLongTapHandler(LongTapHandler handler) {
    LongTapRecognizer recognizer = new LongTapRecognizer(source);
    registerRecognizer(recognizer);
    source.addHandler(handler, LongTapEvent.getType());
  }
View Full Code Here

TOP

Related Classes of org.jboss.errai.ui.cordova.events.touch.longtap.LongTapRecognizer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.