Example usage for com.google.gwt.user.client.ui ValueBox subclass-usage

List of usage examples for com.google.gwt.user.client.ui ValueBox subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui ValueBox subclass-usage.

Usage

From source file com.google.gerrit.client.admin.RefPatternBox.java

public class RefPatternBox extends ValueBox<String> {
    private static final Renderer<String> RENDERER = new Renderer<String>() {
        public String render(String ref) {
            return ref;
        }

From source file com.google.gwt.sample.dynatablemvp.client.widgets.ZipPlusFourBox.java

/**
 * A simple implementation of a US zip code input field.
 * <p>
 * Accepted formats are <code>ddddd</code> or <code>ddddd-dddd</code>.
 */
public class ZipPlusFourBox extends ValueBox<String> {

From source file com.google.gwt.sample.dynatablerf.client.widgets.ZipPlusFourBox.java

/**
 * A simple implementation of a US zip code input field.
 * <p>
 * Accepted formats are <code>ddddd</code> or <code>ddddd-dddd</code>.
 */
public class ZipPlusFourBox extends ValueBox<String> {

From source file com.tasktop.c2c.server.common.web.client.widgets.BigDecimalBox.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class BigDecimalBox extends ValueBox<BigDecimal> {

From source file com.tasktop.c2c.server.common.web.client.widgets.time.TimePeriodBox.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class TimePeriodBox extends ValueBox<BigDecimal> {

From source file gwt.material.design.client.base.FloatBox.java

public class FloatBox extends ValueBox<Float> {

    public FloatBox() {
        super(Document.get().createTextInputElement(), FloatRenderer.instance(), FloatParser.instance());
    }
}

From source file gwt.material.design.client.base.NumberBox.java

/**
 * Base class to handle number values on {@code <input type="number">} elements.
 * 
 * The parsing and formatting is done by the browser, using the user specific i18n settings.
 * 
 * @author gilberto-torrezan

From source file org.jbpm.form.builder.ng.model.common.panels.RangeBox.java

public class RangeBox extends ValueBox<Double> {

    private static class ElementBuilder {
        private final Element ret;

        public ElementBuilder() {

From source file org.jbpm.formapi.common.panels.RangeBox.java

public class RangeBox extends ValueBox<Double> {

    private static class ElementBuilder {
        private final Element ret;

        public ElementBuilder() {

From source file org.kaaproject.avro.ui.gwt.client.widget.NumberBox.java

public abstract class NumberBox<T extends Number> extends ValueBox<T>
        implements BlurHandler, FocusHandler, ClickHandler, KeyDownHandler {

    private AvroUiStyle style;
    private String promptText;
    private boolean isDecimal = false;