Example usage for com.vaadin.ui TextField subclass-usage

List of usage examples for com.vaadin.ui TextField subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui TextField subclass-usage.

Usage

From source file com.foc.vaadin.gui.components.FVTextField.java

@SuppressWarnings({ "serial" })
public class FVTextField extends TextField implements FocXMLGuiComponent {

    private String name = null;

    private IFocData focData = null;

From source file com.foc.vaadin.gui.components.treeGrid.FVEditorField_Numeric.java

public class FVEditorField_Numeric extends TextField {

    private FVTableColumn tableColumn = null;

    public FVEditorField_Numeric(FVTableColumn tableColumn) {
        this.tableColumn = tableColumn;

From source file com.haulmont.cuba.web.toolkit.ui.CubaTextField.java

public class CubaTextField extends TextField implements Action.Container {

    /**
     * Keeps track of the Actions added to this component, and manages the
     * painting and handling as well.
     */

From source file com.haulmont.cuba.web.widgets.CubaTextField.java

public class CubaTextField extends TextField implements Action.Container, LegacyComponent {

    /**
     * Keeps track of the Actions added to this component, and manages the
     * painting and handling as well.
     */

From source file com.ies.schoolos.ui.mobile.component.NumberField.java

/**
 * <p>
 * Provides a numeric field with automatic keystroke filtering and validation
 * for integer (123) and decimal numbers (12.3). The minus sign and
 * user-definable grouping and decimal separators are supported.
 * </p>

From source file com.mcparland.john.vaadin_mvn_arch.samples.crud.NumberField.java

/**
 * A field for entering numbers. On touch devices, a numeric keyboard is shown
 * instead of the normal one.
 */
public class NumberField extends TextField {
    /**

From source file com.mycollab.mobile.ui.SearchInputField.java

/**
 * @author Mycollab Ltd
 * @since 5.2.5
 */
public abstract class SearchInputField<S extends SearchCriteria> extends TextField implements HasSearchHandlers<S> {
    private List<SearchHandler<S>> searchHandlers;

From source file com.openhris.commons.HRISTextField.java

/**
 *
 * @author jetdario
 */
public class HRISTextField extends TextField {

From source file com.save.abstractclasses.AbstractTextField.java

/**
 *
 * @author jetdario
 */
public abstract class AbstractTextField extends TextField {

From source file com.sumscope.widgets.numberfield.NumberField.java

/**
 * Number input field class, which accepts only numbers and has configuration:
 * <br/>
 * 1. Is signed. Default = true; <br/>
 * 2. Is use grouping. Default = false; <br/>
 * 3. Character of grouping separator. Default = ' ';<br/>