Example usage for javax.swing JTextField subclass-usage

List of usage examples for javax.swing JTextField subclass-usage

Introduction

In this page you can find the example usage for javax.swing JTextField subclass-usage.

Usage

From source file net.sourceforge.msscodefactory.cflib.v2_1.CFLib.Swing.CFJTextField.java

/**
 *   CFJTextField Swing Text Field Display Widget.
 */
public class CFJTextField extends JTextField {
    public CFJTextField() {
        super();

From source file Main.java

class IntegerField extends JTextField {
    /**
     * Default ctor.
     */
    public IntegerField() {
        super();

From source file com.willwinder.universalgcodesender.uielements.components.CommandTextArea.java

/**
 *
 * @author wwinder
 */
public class CommandTextArea extends JTextField implements KeyEventDispatcher, UGSEventListener {
    private BackendAPI backend;

From source file edu.ku.brc.af.ui.db.TextFieldFromPickListTable.java

/**
 * @author rods
 *
 * @code_status Alpha
 *
 * Created Date: Nov 15, 2006

From source file com.anrisoftware.prefdialog.miscswing.validatingfields.ValidatingTextField.java

/**
 * Using an input verifier to verify the input on focus lost and input enter.
 * Mark the field and show a tool-tip text if the input is not valid.
 *
 * @author Erwin Mueller, erwin.mueller@deventm.org
 * @since 3.0

From source file ValidationTestFrame.java

class IntTextField extends JTextField {
    public IntTextField(int defval, int size) {
        super("" + defval, size);
    }

    protected Document createDefaultModel() {

From source file InsetsTextField.java

/**
 * A JTextField for displaying insets.
 *
 * @author Andrzej Porebski
 */
public class InsetsTextField extends JTextField {

From source file com.eviware.soapui.impl.rest.panels.component.RestResourceEditor.java

/**
 * Text field for editing a rest resource. Pops up a separate dialog to edit parts of the resource separately if the
 * rest resource has parents or children.
 */
public class RestResourceEditor extends JTextField {
    public static final String REST_RESOURCE_EDITOR_TEXT_FIELD = "RestResourceEditorTextField";

From source file edu.ku.brc.af.ui.db.JAutoCompTextField.java

/**
 * An auto-complete text field which is supported through PickList/PickListItem.
 * The searches in the list can be case-sensitive or insensitive. Does search when user presses SEARCH_KEY
 * and pops up a menu for selecting existing values.
 *
 * @code_status Complete

From source file org.revager.gui.autocomplete.Java2sAutoTextField.java

/**
 * Field, based on {@link JTextField}, which remembers all entered values. Based
 * on these values autocompletion is suggested.
 * 
 * Based on
 * http://www.java2s.com/Code/Java/Swing-Components/AutocompleteComboBox.htm