/** The dates of the show. */
public class ShowCalendar {
  /** The number of days in each month that the show is playing */
  public static final int[] DATES = {31, 28, 31, 30, 31, 30, 
                                     31, 31, 30, 31, 30, 31};
  /** The months the show is playing */
  public static final String[] MONTHS = {"January",
                                         "February",
                                         "March",
                                         "April",
                                         "May",
                                         "June",
                                         "July",
                                         "August",
                                         "September",
                                         "October",
                                         "November",
                                         "December"};
    
  }
