Label label = new Label(components, SWT.NONE);
label.setText("Descri��o:");
label.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WIDGET_LIGHT_SHADOW));
descriptionText = new Text(components, SWT.BORDER);
new FirstUpperCaseMask(descriptionText);
descriptionText.addFocusListener(new RequiredWhenLostFocus(descriptionText, RequiredWhenLostFocus.ERROR_REQUIRED_ACCOUNT_TO_PAY_DESCRIPTION,
screenMessageLabel));
GridData data = new GridData(GridData.FILL_HORIZONTAL);
data.horizontalSpan = 2;