return;
DirectoryDialog dialog = new DirectoryDialog(LHttpdRuntimeComposite.this.getShell());
dialog.setMessage(Messages.LHttpdRuntimeComposite_SelectXamppInstallDir);
dialog.setFilterPath(installDir.getText());
String selectedDirectory = dialog.open();
if (selectedDirectory != null) {
final IPath installPath = new Path(selectedDirectory);
installRuntimeJob = new Job(Messages.LHttpdRuntimeComposite_TaskInstallingRuntime) {
public boolean belongsTo(Object family) {
return PEXServerUiPlugin.PLUGIN_ID.equals(family);