label.setText( "&Location name:");
Text text = new Text(panel, SWT.SINGLE | SWT.BORDER);
GridData data = new GridData(GridData.FILL_HORIZONTAL);
text.setLayoutData(data);
text.setText(location.getConfPropValue(ConfProp.PI_LOCATION_NAME));
text.addModifyListener(new ModifyListener() {
@Override
public void modifyText(ModifyEvent e) {
final Text text = (Text) e.widget;
final ConfProp prop = (ConfProp) text.getData("hProp");
Display.getDefault().syncExec(new Runnable() {