return binding;
}
protected void applyContext(NachoCalendarDateFieldBinding binding, Map context) {
super.applyContext(binding, context);
BeanWrapper wrapper = new BeanWrapperImpl(binding.getControl());
Object dateFormat = context.get(DATE_FORMAT);
// remove DATE_FORMAT temporarily since it is handled in the super class
context.remove(DATE_FORMAT);
wrapper.setPropertyValues(context);
if (dateFormat != null) {
// restore the original context
context.put(DATE_FORMAT, dateFormat);
}
}