public ScheduleKey(Month m, Week w, int c) { month = m; week = w; course = c; }
public Week(int start, int end, Month month) { this.start = start; this.end = end; this.month = month; }