Package DisplayProject.actions

Source Code of DisplayProject.actions.NumericTemplate

/*
Copyright (c) 2003-2008 ITerative Consulting Pty Ltd. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:

o Redistributions of source code must retain the above copyright notice, this list of conditions and
the following disclaimer.
 
o Redistributions in binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the distribution.
   
o This jcTOOL Helper Class software, whether in binary or source form may not be used within,
or to derive, any other product without the specific prior written permission of the copyright holder

 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


*/
package DisplayProject.actions;

import javax.swing.JFormattedTextField.AbstractFormatter;
import javax.swing.text.DefaultFormatter;
import javax.swing.text.DefaultFormatterFactory;

import DisplayProject.DataField;
import DisplayProject.NumericFormatter;
import Framework.TextData;

/**
* This action allows the get an set of a DataField (JFormattedTextField) numeric format and mask.
*
*/
public class NumericTemplate extends PendingAction {

    private TextData value;
    public NumericTemplate(DataField pComponent, String pValue) {
        super(pComponent);
        this.value = new TextData(pValue);
    }
    public NumericTemplate(DataField pComponent, TextData pValue) {
        super(pComponent);
        this.value = pValue;
    }
    public void performAction() {
      // TF:9/3/08:Revamped this method for the new formatters
//        NumberFormat nf = new NumericFormat(this.value, NumericFormat.qq_Resolver.cTEMPLATE).getCorrectFormatter();
//        DefaultFormatterFactory dff = new DefaultFormatterFactory(
//                new NumberFormatter(nf),
//                new NumberFormatter(nf),
//                new NumberFormatter(nf),
//                null);
//        ((DataField)this._component).setFormatterFactory(dff);
//        ((DataField)this._component).setOriginalFormatText(this.value.toString());

      DataField df = (DataField)this._component;
      AbstractFormatter af = df.getFormatter();
      Class<?> valueClass = null;
      if (af instanceof DefaultFormatter) {
        valueClass = ((DefaultFormatter)af).getValueClass();
      }
    NumericFormatter formatter = new NumericFormatter((DataField)this._component, this.value.toString(), valueClass);
        DefaultFormatterFactory dff = new DefaultFormatterFactory(
            formatter,
            formatter,
            formatter,
            formatter);
        ((DataField)this._component).setFormatterFactory(dff);
        ((DataField)this._component).setOriginalFormatText(this.value.toString());
    }
    public static void set(DataField comp, String value){
        ActionMgr.addAction(new NumericTemplate(comp, value));
    }
    public static void set(DataField comp, TextData value){
        ActionMgr.addAction(new NumericTemplate(comp, value.toString()));
    }

    public static TextData get(DataField comp){
        NumericTemplate action = ActionMgr.getAction(comp, NumericTemplate.class);
        if (action != null) {
            return action.value;
        }
        return new TextData(comp.getOriginalFormatText());

    }
}
TOP

Related Classes of DisplayProject.actions.NumericTemplate

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.