protected JComponent doBindControl() {
final ValueModel valueModel = getValueModel();
formattedTextField.setValue(valueModel.getValue());
// TODO: implement ValueCommitPolicies
new FormattedTextFieldAdapter(formattedTextField, valueModel, ValueCommitPolicy.AS_YOU_TYPE);
return formattedTextField;
}