List of usage examples for com.google.gwt.user.client.ui TextBox subclass-usage
From source file ar.com.kyol.jet.client.wrappers.FloatBox.java
public class FloatBox extends TextBox { /** * Instantiates a new float box. * * @param maximumFractionDigits - 1 or more digits
From source file ar.com.kyol.jet.client.wrappers.NumericBox.java
public class NumericBox extends TextBox { /** * Instantiates a new numeric box. */ public NumericBox() {
From source file asquare.gwt.tk.client.ui.UrlLocation.java
/** * A URL text box similar to that of a browser location bar. * * <p><em>This widget is a work in progress and therefore is subject to change. </em></p> */ public class UrlLocation extends TextBox implements FocusHandler, KeyDownHandler {
From source file carteirainveste.client.DateUtil.java
class AssetTextBox extends TextBox { String assetName; AssetTextBox(String asset) { super(); assetName = asset;
From source file ch.heftix.mailxel.client.TextBoxWChangeDetection.java
public class TextBoxWChangeDetection extends TextBox implements ValueChangeHandler<String> { private boolean isDirty = false; public TextBoxWChangeDetection() { super();
From source file ch.unifr.pai.twice.mousecontrol.client.MobileKeyboard.java
/**
* Implementation for triggering the keyboard through a "button".
*
* @author Oliver Schmid
*
*/
From source file ch.unifr.pai.twice.multipointer.client.widgets.NewMultiFocusTextBox.java
public class NewMultiFocusTextBox extends TextBox { private MultiFocus mf = new MultiFocus(); private FlowPanel panel = new FlowPanel(); public NewMultiFocusTextBox() {
From source file ch.unifr.pai.twice.multipointer.controller.client.MobileKeyboard.java
/**
* Implementation for triggering the keyboard through a "button".
*
* @author Oliver Schmid
*
*/
From source file ch.unifr.pai.twice.multipointer.provider.client.widgets.NewMultiFocusTextBox.java
public class NewMultiFocusTextBox extends TextBox { private final MultiFocus mf = new MultiFocus(); private final FlowPanel panel = new FlowPanel(); public NewMultiFocusTextBox() {
From source file ch.unifr.pai.twice.widgets.client.RemoteKeyRecorder.java
public class RemoteKeyRecorder extends TextBox implements RemoteWidget { private String uniqueIdentifier; private ServerPushEventBus eventBus; private HandlerRegistration keyRegistration;