Package org.bmdrc.chemistry.tool

Examples of org.bmdrc.chemistry.tool.InputThreadInformation


        } else if (this.getFrame().getSelectedCalculationMethod().equals(this.CALCULATE_SOLVATION_FREE_ENERGY)) {
            SFECalculator.calculateSFE(this.getFrame());
        }
    }
    private void __calculateInputThreadInformation() {
        InputThreadInformation theCalculator = new InputThreadInformation(this.getFrame());

        try {
            if (this.__isCorrectFilePathInInputThreadInformation(this.getFrame().getFilePathTextFieldList())) {
                theCalculator.putThreadInformation(this.getFrame().getFilePathTextFieldList().get(this.INPUT_FILE_PATH_INDEX).getText(),
                        this.getFrame().getFilePathTextFieldList().get(this.RESULT_FILE_PATH_INDEX).getText());
            } else {
                JOptionPane.showMessageDialog(null, "파일 경로가 잘못 되었습니다.", "Error", JOptionPane.ERROR_MESSAGE);
            }
        } catch (FileNotFoundException ex) {
View Full Code Here

TOP

Related Classes of org.bmdrc.chemistry.tool.InputThreadInformation

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.