RunPropertiesPart runPropertiesPart = new RunPropertiesPart(left, tk, Section.TITLE_BAR | Section.TWISTIE | Section.DESCRIPTION);
managedForm.addPart(runPropertiesPart);
gd = new GridData(SWT.FILL, SWT.FILL, true, false);
runPropertiesPart.getSection().setLayoutData(gd);
RunProgramArgsPart programArgsPart = new RunProgramArgsPart(left, tk, Section.TITLE_BAR | Section.TWISTIE);
managedForm.addPart(programArgsPart);
gd = new GridData(SWT.FILL, SWT.FILL, true, false);
programArgsPart.getSection().setLayoutData(gd);
RunVMArgsPart vmArgsPart = new RunVMArgsPart(left, tk, Section.TITLE_BAR | Section.TWISTIE);
managedForm.addPart(vmArgsPart);
gd = new GridData(SWT.FILL, SWT.FILL, true, false);
vmArgsPart.getSection().setLayoutData(gd);