Package jSimMacs.data

Examples of jSimMacs.data.GenboxData


   */
  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


        editconfData.setBoxLabel(attributes
            .getValue(XMLConstants.BOXTYPE));
      }
    } else if (name.equalsIgnoreCase(XMLConstants.GENBOX)) {
      processGenbox = true;
      genboxData = new GenboxData();
      genboxData.setShortName(attributes
          .getValue(XMLConstants.SHORTNAMEOFTAB));
      genboxData.setName(attributes.getValue(XMLConstants.NAMEOFTAB));
      if (attributes.getValue(XMLConstants.COMMANDOPTIONS) != null) {
        genboxData.setAdditionalCommand(attributes
View Full Code Here

TOP

Related Classes of jSimMacs.data.GenboxData

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.