Package com.pugh.sockso.gui.controls

Source Code of com.pugh.sockso.gui.controls.NumberOptionField

/*
* NumberFieldOption.java
*
* Created on Aug 19, 2007, 3:46:59 PM
*
* Only allows the input of numbers
*
*/

package com.pugh.sockso.gui.controls;

import com.pugh.sockso.Properties;

import java.text.DecimalFormat;

import javax.swing.text.NumberFormatter;

public class NumberOptionField extends TextOptionField {

    public NumberOptionField( Properties p, String name ) {
        super( p, name, getNumberFormatter() );
    }
   
    private static NumberFormatter getNumberFormatter() {
       
        DecimalFormat format = new DecimalFormat( "#####" );
        NumberFormatter f = new NumberFormatter( format );
       
        f.setAllowsInvalid( false );
       
        return f;
       
    }

}
TOP

Related Classes of com.pugh.sockso.gui.controls.NumberOptionField

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.