List of usage examples for com.google.gwt.user.client.ui ValueBoxBase addMouseUpHandler
public HandlerRegistration addMouseUpHandler(MouseUpHandler handler)
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); }