Beispiel #1
0
 /**
  * This method adds a new day to highlight to the calendar. That day will be displayed in the
  * highlight font.
  */
 public void addDayHighlight(java.sql.Date d) {
   GregorianCalendar g = new GregorianCalendar();
   g.setTime(d);
   addDayHighlight(g);
 }