}
this.parameterPanel.layout(inputNodes.size(), 3, GridPanel.WEIGHT_NONE, 2);
// this.instanceNameTextField.setText(workflow.getName()+"_"+Calendar.getInstance().getTime().toString());
this.topicTextField.setText(UUID.randomUUID().toString());
XBayaConfiguration config = this.engine.getConfiguration();
this.gfacTextField.setText(config.getGFacURL().toString());
URI workflowInterpreterURL = config.getWorkflowInterpreterURL();
if (null != workflowInterpreterURL) {
this.workflowInterpreterTextField.setText(workflowInterpreterURL.toString());
} else {
this.workflowInterpreterTextField.setText(XBayaConstants.DEFAULT_WORKFLOW_INTERPRETER_URL);
}
AiravataAPI airavataAPI = config.getAiravataAPI();
if (null != airavataAPI) {
this.RegistryTextField.setText(config.getRegistryURL());
} else {
this.RegistryTextField.setText(XBayaConstants.REGISTRY_URL.toASCIIString());
}
this.dialog.show();