1011101210131014101510161017101810191020
} public void changeToFirstUpperCaseWhenLostFocus(final Text arg0) { arg0.addFocusListener(new FocusAdapter() { public void focusLost(FocusEvent event) { arg0.setText(new StringTool(arg0.getText()).toFirstUpperCase()); } }); }