// Drag&drop
if (ACCESSCRITERIA.equals(child.getTag())) {
if (monthView
&& !(getDropHandler() instanceof CalendarMonthDropHandler)) {
setDropHandler(new CalendarMonthDropHandler());
} else if (!monthView
&& !(getDropHandler() instanceof CalendarWeekDropHandler)) {
setDropHandler(new CalendarWeekDropHandler());
}