Package org.bioinfo.ngs.qc.qualimap.gui.dialogs

Examples of org.bioinfo.ngs.qc.qualimap.gui.dialogs.AboutDialog


      splashWindow.setVisible(false);
        if(e.getActionCommand().equalsIgnoreCase(WM_COMMAND_EXIT) ){
        this.closeHomeFrame();
      }
      else if (e.getActionCommand().equalsIgnoreCase(WM_COMMAND_ABOUT)){
      AboutDialog about = new AboutDialog(HomeFrame.this);
      about.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
      about.setLocationRelativeTo(this);
      about.setVisible(true);
      }
      else if(e.getActionCommand().equalsIgnoreCase(WM_COMMAND_WEB_QUALIMAP)){
        openUrl("http://bioinfo.cipf.es/qualimap");
      }
      else if(e.getActionCommand().equalsIgnoreCase(WM_COMMAND_WEB_BIOINFO)){
View Full Code Here

TOP

Related Classes of org.bioinfo.ngs.qc.qualimap.gui.dialogs.AboutDialog

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.