Package org.apache.airavata.schemas.gfac

Examples of org.apache.airavata.schemas.gfac.GramApplicationDeploymentType


    return getGramApplicationDescriptionType().getProjectAccount();
  }
   

    private void loadApplicationDescriptionAdvancedOptions() {
      GramApplicationDeploymentType gadType = getGramApplicationDescriptionType();
    if (gadType.getJobType()!=null) {
      cmbJobType.setSelectedItem(gadType
          .getJobType().toString());
    }
      txtMaxWallTime.setText(String.valueOf(gadType.getMaxWallTime()));
    txtStaticWorkingDirectory.setText(gadType.getStaticWorkingDirectory()==null? "":String.valueOf(gadType.getStaticWorkingDirectory()));
        txtCpuCount.setText(String.valueOf(gadType.getCpuCount()));
        txtProcessorsPerNode.setText(String.valueOf(gadType.getProcessorsPerNode()));
        txtMinMemory.setText(String.valueOf(gadType.getMinMemory()));
        txtMaxMemory.setText(String.valueOf(gadType.getMaxMemory()));
    ProjectAccountType projectAccount = getProjectAccountType();

    txtProjectAccountNumber.setText(projectAccount.getProjectAccountNumber()==null? "":projectAccount.getProjectAccountNumber());
    txtProjectAccountDescription.setText(projectAccount.getProjectAccountDescription()==null? "":projectAccount.getProjectAccountDescription());
View Full Code Here

TOP

Related Classes of org.apache.airavata.schemas.gfac.GramApplicationDeploymentType

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.