Uses of Class
com.std.model.appointment.AppointmentSet

Packages that use AppointmentSet
com.std.model   
com.std.model.appointment   
com.std.view   
 

Uses of AppointmentSet in com.std.model
 

Methods in com.std.model that return AppointmentSet
 AppointmentSet CalendarModel.getAllAppointments()
           
 AppointmentSet CalendarModel.getDayAppointments()
           
 AppointmentSet CalendarModel.getGridMonthAppointments()
           
 AppointmentSet CalendarModel.getMonthAppointments()
           
 AppointmentSet CalendarModel.getWeekAppointments()
           
 

Methods in com.std.model that return types with arguments of type AppointmentSet
 java.util.List<AppointmentSet> CalendarModel.getMonthWeeksAppointments()
           
 java.util.List<AppointmentSet> CalendarModel.getWeekDaysAppointments()
           
 

Methods in com.std.model with parameters of type AppointmentSet
 void CalendarModel.appointmentChanged(AppointmentSet source, Appointment subSource)
          callback for when an appointment has been changed
 void CalendarModel.appointmentSetChanged(AppointmentSet source, Appointment subSource)
          callback for when an appointment has been added or removed
 

Uses of AppointmentSet in com.std.model.appointment
 

Methods in com.std.model.appointment that return AppointmentSet
 AppointmentSet AppointmentSet.getRange(DateRange dateRange)
           
 

Methods in com.std.model.appointment with parameters of type AppointmentSet
 void StatefulAppointment.apptSetChanged(AppointmentSet apptSet, Appointment appt)
          resets the target when the target is removed from the set
 void PersistentAppointmentSet.setModified(AppointmentSet apptSet, Appointment appt)
          sets this as modified whenever the current appointment set is changed
 

Constructor parameters in com.std.model.appointment with type arguments of type AppointmentSet
StatefulAppointment(Stateful<AppointmentSet> targetSet)
          creates a new StatefulAppointment object with the passed target set, and defaulting to a null target
 

Uses of AppointmentSet in com.std.view
 

Methods in com.std.view with parameters of type AppointmentSet
 void MonthlyPanel.setAppointments(AppointmentSet s)
           
 void WeeklyPanel.update(java.util.Date date, AppointmentSet s)
           
 void MonthlyPanel.update(java.util.Date d, AppointmentSet as)
           
 void DailyPanel.update(java.util.Date date, AppointmentSet s)
           
 

Constructors in com.std.view with parameters of type AppointmentSet
MonthlyPanel(AppointmentSet as)