Package jSimMacs.data

Examples of jSimMacs.data.GromppData


      simStepData.setShortName(attributes
          .getValue(XMLConstants.SHORTNAMEOFTAB));
      simStepData.setName(attributes.getValue(XMLConstants.NAMEOFTAB));
    } else if (name.equalsIgnoreCase(XMLConstants.GROMPP)) {
      processGrompp = true;
      gromppData = new GromppData();
      if (attributes.getValue(XMLConstants.COMMANDOPTIONS) != null) {
        gromppData.setAdditionalCommand(attributes
            .getValue(XMLConstants.COMMANDOPTIONS));
      }
    } else if (name.equalsIgnoreCase(XMLConstants.MDRUN)) {
View Full Code Here


  }

  public void updateData() {
    if (simData != null) {
      GromppData gromppData = simData.getGromppData();
      inputField.setText(gromppData.getRunOutput());
      nodesField.setText(Integer.toString(gromppData.getNp()));
    } else {
      inputField.setText(project.getContinuationRunFile());
    }
  }
View Full Code Here

TOP

Related Classes of jSimMacs.data.GromppData

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.