Example usage for com.google.gwt.user.client.ui ValueBoxBase addMouseUpHandler

List of usage examples for com.google.gwt.user.client.ui ValueBoxBase addMouseUpHandler

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui ValueBoxBase addMouseUpHandler.

Prototype

public HandlerRegistration addMouseUpHandler(MouseUpHandler handler) 

Source Link

Usage

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

License:Open Source License

public MaskValueBoxHelper(ValueBoxBase<String> valueBox) {
    this.valueBox = valueBox;

    valueBox.addKeyDownHandler(this);
    valueBox.addKeyUpHandler(this);
    valueBox.addKeyPressHandler(this);
    valueBox.addBlurHandler(this);
    valueBox.addFocusHandler(this);
    valueBox.addMouseUpHandler(this);
}