Comparator for ScheduleEntry objects. This is needed for correctly rendering the schedule.
59606162636465
) { super(); this.id = id; this.name = name; this.entries = new TreeSet(new ScheduleEntryComparator()); }
52535455565758
* @param date the date */ public ScheduleDay(Date date) { super(date); this.entries = new TreeSet(new ScheduleEntryComparator()); }
5253545556575859
/** * Creates a new SimpleScheduleModel object. */ public SimpleScheduleModel() { this.entries = new TreeSet(new ScheduleEntryComparator()); this.holidays = new HashMap(); }
71727374757677
* @param date the date */ public ScheduleDay(Date date, TimeZone tz) { super(date, tz); this.entries = new TreeSet(new ScheduleEntryComparator()); }
6465666768697071