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());