Examples of Pdb2gmxData


Examples of jSimMacs.data.Pdb2gmxData

   * Creates the Empty Project Type
   * @return Empty Project type
   */
  private ProjectType createEmptyProjectType() {
    ProjectType type = new ProjectType(JSimConstants.EMPTYPROJECTSTRING);
    type.getCommandData().add(new Pdb2gmxData());
    type.getCommandData().add(new EditconfData());
    type.getCommandData().add(new GenboxData());
    type.getCommandData().add(new SimStepData());
    return type;
  }
View Full Code Here

Examples of jSimMacs.data.Pdb2gmxData

    if (name.equalsIgnoreCase(XMLConstants.PROJECTTYPE)) {
      type.setName(attributes.getValue(XMLConstants.PROJECTTYPENAME));
    } else if (name.equalsIgnoreCase(XMLConstants.PDB2GMX)) {
      processPdb2gmx = true;
      pdb2gmxData = new Pdb2gmxData();
      pdb2gmxData.setShortName(attributes
          .getValue(XMLConstants.SHORTNAMEOFTAB));
      pdb2gmxData.setName(attributes.getValue(XMLConstants.NAMEOFTAB));
      if (attributes.getValue(XMLConstants.COMMANDOPTIONS) != null) {
        pdb2gmxData.setAdditionalCommand(attributes
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.