Package versusSNP.gui.dialogs

Examples of versusSNP.gui.dialogs.AlignmentLoaderDialog


      loopORFLoader(new ORFLoaderDialog(document.getGenomeNames()));
    } else if (obj == menu.getMenuFileExit()) {
      if (JOptionPane.showConfirmDialog(null, UICaption.dialog_label_exit, UICaption.dialog_caption_exit, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE) == JOptionPane.YES_OPTION)
        System.exit(0);
    } else if (obj == menu.getMenuFileOpenAlign()) {
      loopAlignmentLoader(new AlignmentLoaderDialog(document.getGenomeNames()));
    } else if (obj == menu.getMenuFileSaveAlign()) {
      JFileChooser chooser = new JFileChooser();
      if (chooser.showSaveDialog(null) == JFileChooser.APPROVE_OPTION) {
        String blastPath = Parameter.temp_path + Parameter.temp_output_blast;
        if (!new File(blastPath).exists()) {
View Full Code Here

TOP

Related Classes of versusSNP.gui.dialogs.AlignmentLoaderDialog

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.