Package org.geoforge.guillc.textfield

Examples of org.geoforge.guillc.textfield.GfrTfdTextCheckableSmallInt


    public PnlSelEditTfdMultipleIntegerTwin(String strLabel, boolean blnFiedRequired,
            DocumentListener lstDocument)
    {
        super(strLabel, blnFiedRequired);
       
        this._tfdValue1 = new GfrTfdTextCheckableSmallInt(lstDocument);
        this._tfdValue2 = new GfrTfdTextCheckableSmallInt(lstDocument);
    }
View Full Code Here


    {
        super(strWhat + " " + PnlSelEditTfdMultipleLocationDmsAbs._F_STR_SUFFIX_,
                true // blnFiedRequired
                );
       
        this._tfdValueDegrees_ = new GfrTfdTextCheckableSmallInt(lstDocument);
        this._tfdValueMinutes_ = new GfrTfdTextCheckableSmallInt(lstDocument);
        this._tfdValueSeconds_ = new GfrTfdTextCheckableSmallFloat(lstDocument);
       
       
       
    }
View Full Code Here

   
    public PnlSelEditTfdSingleIntSmall(String strLabel, DocumentListener lstDocument, boolean blnFiedRequired)
    {
        super(strLabel, blnFiedRequired);
       
        super._tfdValue = new GfrTfdTextCheckableSmallInt(lstDocument);
    }
View Full Code Here

TOP

Related Classes of org.geoforge.guillc.textfield.GfrTfdTextCheckableSmallInt

Copyright © 2018 www.massapicom. 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.