Composite topComposite = new Composite(composite, SWT.NONE);
topComposite.setLayout(new GridLayout(2, false));
topComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
Label emailLabel = toolkit.createLabel(topComposite, Messages.COMMONTXT_EMAIL_WITH_COLON, SWT.NONE);
emailLabel.setForeground(toolkit.getColors().getColor(IFormColors.TITLE));
emailLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false));
emailText = toolkit.createText(topComposite, ""); //$NON-NLS-1$
emailText.setEditable(false);