The code below shows how to allow or not empty selections: 
<CODE>
CalendarComponent calendarComponent = new CalendarComponent();
// allow empty selection
calendarComponent.getCalendarSelectionModel().setEmptySelectionAllowed(true);
// not allow empty selection
calendarComponent.getCalendarSelectionModel().setEmptySelectionAllowed(false);
</CODE>
