Example usage for javafx.scene.control TextField subclass-usage

List of usage examples for javafx.scene.control TextField subclass-usage

Introduction

In this page you can find the example usage for javafx.scene.control TextField subclass-usage.

Usage

From source file br.com.rhmanager.util.LetrasTextField.java

/**
 *
 * @author lucas
 */
public class LetrasTextField extends TextField {

From source file org.dataconservancy.packaging.gui.util.NumericTextField.java

/**
 * Class that extends TextField but only allow numeric values to be entered.
 */
public class NumericTextField extends TextField {
    public NumericTextField(String initialValue) {
        super();

From source file de.cubicvoxel.workspacefx.field.FloatField.java

/**
 * A {@link TextField} which only allows {@link Double}s.
 *
 * @author Maik Becker {@literal <hi@maik.codes>}
 */
public class FloatField extends TextField implements IsField<Double> {

From source file de.cubicvoxel.workspacefx.field.IntegerField.java

/**
 * A {@link TextField} which only allows integers.
 *
 * @author Maik Becker {@literal <hi@maik.codes>}
 */
public class IntegerField extends TextField implements IsField<Integer> {

From source file org.pdfsam.ui.commons.ValidableTextField.java

/**
 * {@link TextField} triggering validation when Enter key is pressed or when focus is lost. A {@link ValidationState} property is exposed to bind to the validation state. Default
 * implementation behaves as any value in the field is always valid, a different {@link Validator} can be set to achieve custom validation.
 * 
 * @author Andrea Vacondio
 *