Examples of MoleculeModifier


Examples of org.bmdrc.chemistry.tool.MoleculeModifier

            JOptionPane.showMessageDialog(null, "IO exception!!", "Error", JOptionPane.ERROR_MESSAGE);
        }
    }

    private void __mergeMoleculeFile() {
        MoleculeModifier theMoleculeModifier = new MoleculeModifier(this.getFrame());

        if (this.__isCorrectFilePathInMergeMoleculeFile(this.getFrame().getFilePathTextFieldList())) {
            theMoleculeModifier.mergeMoleculeFile(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);
        }
    }
View Full Code Here

Examples of org.bmdrc.chemistry.tool.MoleculeModifier

            JOptionPane.showMessageDialog(null, "파일 경로가 잘못 되었습니다.", "Error", JOptionPane.ERROR_MESSAGE);
        }
    }

    private void __splitMoleculeFile() {
        MoleculeModifier theMoleculeModifier = new MoleculeModifier(this.getFrame());

        if (this.__isCorrectFilePathInSplitedMoleculeFile(this.getFrame().getFilePathTextFieldList())) {
            theMoleculeModifier.splitedMoleculeFile(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);
        }
    }
View Full Code Here
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.