/**
  * Update the current date.
  *
  * @param year The year.
  * @param month The month which is <strong>starting from zero</strong>.
  * @param dayOfMonth The day of the month.
  */
 public void updateDate(int year, int month, int dayOfMonth) {
   mDelegate.updateDate(year, month, dayOfMonth);
 }