*/
public Integer convertWidgetToProperty(Text widget) throws ViewDataBeanValidationException {
try {
return new Integer(widget.getText());
} catch(NumberFormatException nfe) {
throw new ViewDataBeanValidationException("Widget value '"+widget.getText()+"' is not a valid number, data is incorrect or widget mapping to Integer is incorrect.", nfe);
}
}