Uses of Class
com.gmscheduler.model.Schedule

Packages that use Schedule
com.gmscheduler.model   
 

Uses of Schedule in com.gmscheduler.model
 

Methods in com.gmscheduler.model that return Schedule
 Schedule ScheduleUtil.findTime(Schedule freetime, java.util.LinkedList<Schedule> schedules)
          Finds the remaining free time from the free time constraint compared against the busy time of all schedules.
 Schedule DatabaseManager.loadScheduleById(java.lang.Long id)
          loads a Schedule in a hibernate database
 Schedule ScheduleUtil.parseSchedule(java.lang.String str)
          This method simply takes in the big list of times and days, breaks them apart and sends them to the parse method which handles the actual parsing.
 Schedule ScheduleUtil.removeTimeframe(Schedule s, Timeframe t)
          Removes a Timeframe from a Schedule, also from the database.
 Schedule DatabaseManager.storeSchedule(Schedule s)
          Stores a Schedule in a hibernate database
 

Methods in com.gmscheduler.model with parameters of type Schedule
 void DatabaseManager.deleteSchedule(Schedule s)
          Deletes a Schedule in a hibernate database
 void Schedule.difference(Schedule outschedule)
          Takes a schedule and removes the timeframes in the given schedule from this schedule
 Schedule ScheduleUtil.findTime(Schedule freetime, java.util.LinkedList<Schedule> schedules)
          Finds the remaining free time from the free time constraint compared against the busy time of all schedules.
 Schedule ScheduleUtil.removeTimeframe(Schedule s, Timeframe t)
          Removes a Timeframe from a Schedule, also from the database.
 Schedule DatabaseManager.storeSchedule(Schedule s)
          Stores a Schedule in a hibernate database
 

Method parameters in com.gmscheduler.model with type arguments of type Schedule
 Schedule ScheduleUtil.findTime(Schedule freetime, java.util.LinkedList<Schedule> schedules)
          Finds the remaining free time from the free time constraint compared against the busy time of all schedules.
 

Constructors in com.gmscheduler.model with parameters of type Schedule
Schedule(Schedule u)