Package org.megatome.data

Examples of org.megatome.data.IDataType


    public void actionPerformed(ActionEvent evt) {
        if (evt.getSource() instanceof DataButton) {
            DataButton db = (DataButton)evt.getSource();
            this.previousValue = this.displayedValue;
            IDataType dt = db.getDataType();
            this.displayedValue = Float.parseFloat(dt.getDataValue());
            this.valueJTF.setValue(Float.valueOf(this.displayedValue));
            if (this.detailsDlg != null) {
                this.detailsDlg.updateDetails(dt.getImagePath(), dt
                        .toHTMLString());
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.megatome.data.IDataType

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.