Package edu.stanford.genetics.treeview

Examples of edu.stanford.genetics.treeview.ViewFrame


        fileSet = new FileSet(file.getName(), file.getParent()+File.separator);
      }
      fileSet.setStyle(frameType);

      try {
        ViewFrame tvFrame  = openNewNW(fileSet);
        tvFrame.setVisible(true);
        // tvFrame.loadNW(fileSet);
        if (exportType != null) {
          try {
            attemptExport(exportType, tvFrame);
          } catch (ExportException e) {
            System.err.println(e.getMessage());
            e.printStackTrace(System.err);
          }
          tvFrame.setVisible(false);
          endProgram();
          return;
        }
      } catch (LoadException e) {
        e.printStackTrace();
View Full Code Here

TOP

Related Classes of edu.stanford.genetics.treeview.ViewFrame

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.