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

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

Introduction

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

Usage

From source file com.dianaui.universal.core.client.ui.base.ValueBoxBase.java

public class ValueBoxBase<T> extends com.google.gwt.user.client.ui.ValueBoxBase<T> implements HasId,
        HasResponsiveness, HasPlaceholder, HasAutoComplete, HasSize<InputSize>, HasEditorErrors<T> {

    /**
     * Add support for HasEditorErrors implementation.
     */

From source file com.github.gwtbootstrap.client.ui.base.ValueBoxBase.java

/**
 * A ValueBoxBase extending for Bootstarp style.
 * 
 * <pre>
 * It is GWT's {@link com.google.gwt.user.client.ui.ValueBoxBase} extending for Bootstrap style.
 * </pre>

From source file com.google.gwt.sample.guestbook.client.CustomText.java

public class CustomText extends ValueBoxBase<Double> {
    private static final NumberFormat format = NumberFormat.getFormat("0.0000");

    public CustomText() {
        super(Document.get().createTextInputElement(), new CustomRenderer(), new CustomParser());
    }

From source file de.swm.commons.mobile.client.base.BoxBase.java

/**
 * Creates an HTML5 Element and uses the right GWT renderer and parser to support data binding. Has to inherit from
 * {@link ValueBoxBase} gwt's {@link ValueBox} has an assertion to insert only text content (not valid using e.g.
 * numbers).
 * 
 * @param <T>

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

public class ValueBoxBase<T> extends com.google.gwt.user.client.ui.ValueBoxBase<T>
        implements HasId, HasColors, HasGrid, HasPlaceholder {

    private final IdMixin<ValueBoxBase<T>> idMixin = new IdMixin<>(this);
    private final ColorsMixin<ValueBoxBase<T>> colorsMixin = new ColorsMixin<>(this);
    private final GridMixin<ValueBoxBase<T>> gridMixin = new GridMixin<>(this);

From source file net.sf.mmm.client.ui.gwt.widgets.ColorBox.java

/**
 * A {@link ColorBox} is an input widget for {@link Color}s.
 * 
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */

From source file net.sf.mmm.client.ui.gwt.widgets.InputBox.java

/**
 * A {@link InputBox} extends {@link ValueBoxBase} for HTML5 input widgets.
 * 
 * @param <VALUE> is the generic type of the {@link #getValue() value}.
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0

From source file org.gwtbootstrap3.client.ui.base.ValueBoxBase.java

public class ValueBoxBase<T> extends com.google.gwt.user.client.ui.ValueBoxBase<T>
        implements HasId, HasReadOnly, HasResponsiveness, HasPlaceholder, HasAutoComplete, HasSize<InputSize>,
        HasEditorErrors<T>, HasErrorHandler, HasValidators<T>, HasBlankValidator<T> {

    private static final String MAX_LENGTH = "maxlength";