Package edu.stanford.genetics.treeview

Examples of edu.stanford.genetics.treeview.FileSet


    // setup toplevel
    if (sFilePath != null) {
      final String frameType = args.getFrameType();
      final String exportType = args.getExportType();

      FileSet fileSet;
      if (sFilePath.startsWith("http://")) {
        fileSet = new FileSet(sFilePath,"");
      } else {
        File file = new File(sFilePath);
        fileSet = new FileSet(file.getName(), file.getParent()+File.separator);
      }
      fileSet.setStyle(frameType);

      try {
        ViewFrame tvFrame  = openNewNW(fileSet);
        tvFrame.setVisible(true);
        // tvFrame.loadNW(fileSet);
View Full Code Here

TOP

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

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.