Examples of PDBViewer


Examples of jSimMacs.display.PDBViewer

    String fileName = file.getName();
    int dotPos = fileName.lastIndexOf(".");
    String extension = fileName.substring(dotPos + 1).toLowerCase();

    if (extension.equals(JSimConstants.PDBEXTENSION)) {
      PDBViewer pdbViewer = new PDBViewer(file);
      return pdbViewer;
    } else if (extension.equals(JSimConstants.XVGEXTENSION)) {
      Plotter plotter = new Plotter(fileContent);
      return plotter;
    }
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.