protected final Log log = LogFactory.getLog(getClass());
@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(EncounterType.class, new EncounterTypeEditor());
binder.registerCustomEditor(java.util.Date.class,
new CustomDateEditor(SimpleDateFormat.getDateInstance(SimpleDateFormat.SHORT, Context.getLocale()), true));
}