}
}
DateFormat dateFormat = new SimpleDateFormat(DataBinder.DEFAULT_DATE_FORMAT,
LocaleContextHolder.getLocale());
StructuredDateEditor editor = new StructuredDateEditor(dateFormat, true);
try {
return (Date)editor.assemble(Date.class, dateParams);
}
catch (IllegalArgumentException e) {
return null;
}
}