package view.calendar; import admin.Time; /** * This class represents a period of time for the calendar view. * A period of time is based on the class times of Cal Poly. The time * periods are intervals of 50 minutes from [X]:10(am/pm) to [X+1]:00(am/pm) * where X is number between 1 and 12. * * @author dtumer * @version 2/26/15 * Updated: 3/18/15 */ /* SPEST PROBLEM: * Spest checker gives this error: line 8:69 mismatched character '(' expecting '.' It's something about the left paren at 8:69 that's causing the problem. */ public abstract class SchedulerTime { public Time start; public Time end; }