amountText = new Text(componentsComposite, SWT.SINGLE | SWT.BORDER);
amountText.setText("0,00");
Validator.validateNumbers(amountText);
Validator.validateTextOfMoneyValuesToAvoidEmptyStrings(amountText);
amountText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
new MoneyMask(amountText);
if (account != null) {
amountText.setText(account.getAmount().getFormatedValue());
amountText.setEnabled(false);
}
}