Label spaceLabel = toolkit.createLabel(topComposite, Messages.CloudFoundryAccountSection_LABEL_SPACE, SWT.NONE);
spaceLabel.setForeground(toolkit.getColors().getColor(IFormColors.TITLE));
spaceLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false));
spaceText = toolkit.createText(topComposite, "", SWT.NONE); //$NON-NLS-1$
spaceText.setEditable(false);
spaceText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
spaceText.setData(FormToolkit.KEY_DRAW_BORDER, Boolean.FALSE);
if (cfServer.getCloudFoundrySpace() != null && cfServer.getCloudFoundrySpace().getSpaceName() != null) {
spaceText.setText(cfServer.getCloudFoundrySpace().getSpaceName());