} 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) {