*/
public void setSelectedDate(Object o) {
Object old = selectedDate;
selectedDate = o;
if (selectedDate instanceof String) {
SimpleDate sd = new SimpleDate(getYear(), getMonth(), Integer.parseInt((String) selectedDate));
selectedDate = sd;
}
boundSupport.firePropertyChange(SELECTED_DATE_PROP, old, selectedDate);
}