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

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

Uses of Appointment in com.std.model
 

Methods in com.std.model that return Appointment
 Appointment CalendarModel.ceiling(Appointment e)
           
 Appointment CalendarModel.first()
           
 Appointment CalendarModel.floor(Appointment e)
           
 Appointment CalendarModel.getCurrentAppointment()
           
 Appointment CalendarModel.higher(Appointment e)
           
 Appointment CalendarModel.last()
           
 Appointment CalendarModel.lower(Appointment e)
           
 Appointment CalendarModel.pollFirst()
           
 Appointment CalendarModel.pollLast()
           
 

Methods in com.std.model that return types with arguments of type Appointment
 java.util.Comparator<? super Appointment> CalendarModel.comparator()
           
 java.util.Iterator<Appointment> CalendarModel.descendingIterator()
           
 java.util.NavigableSet<Appointment> CalendarModel.descendingSet()
           
 java.util.SortedSet<Appointment> CalendarModel.headSet(Appointment toElement)
           
 java.util.NavigableSet<Appointment> CalendarModel.headSet(Appointment toElement, boolean inclusive)
           
 java.util.Iterator<Appointment> CalendarModel.iterator()
           
 java.util.SortedSet<Appointment> CalendarModel.subSet(Appointment fromElement, Appointment toElement)
           
 java.util.NavigableSet<Appointment> CalendarModel.subSet(Appointment fromElement, boolean fromInclusive, Appointment toElement, boolean toInclusive)
           
 java.util.SortedSet<Appointment> CalendarModel.tailSet(Appointment fromElement)
           
 java.util.NavigableSet<Appointment> CalendarModel.tailSet(Appointment fromElement, boolean inclusive)
           
 

Methods in com.std.model with parameters of type Appointment
 boolean CalendarModel.add(Appointment e)
           
 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
 Appointment CalendarModel.ceiling(Appointment e)
           
 Appointment CalendarModel.floor(Appointment e)
           
 java.util.SortedSet<Appointment> CalendarModel.headSet(Appointment toElement)
           
 java.util.NavigableSet<Appointment> CalendarModel.headSet(Appointment toElement, boolean inclusive)
           
 Appointment CalendarModel.higher(Appointment e)
           
 Appointment CalendarModel.lower(Appointment e)
           
 void CalendarModel.setCurrentAppointment(Appointment target)
          sets the current appointment
 java.util.SortedSet<Appointment> CalendarModel.subSet(Appointment fromElement, Appointment toElement)
           
 java.util.NavigableSet<Appointment> CalendarModel.subSet(Appointment fromElement, boolean fromInclusive, Appointment toElement, boolean toInclusive)
           
 java.util.SortedSet<Appointment> CalendarModel.tailSet(Appointment fromElement)
           
 java.util.NavigableSet<Appointment> CalendarModel.tailSet(Appointment fromElement, boolean inclusive)
           
 

Method parameters in com.std.model with type arguments of type Appointment
 boolean CalendarModel.addAll(java.util.Collection<? extends Appointment> c)
           
 

Uses of Appointment in com.std.model.appointment
 

Fields in com.std.model.appointment with type parameters of type Appointment
static java.util.Comparator<Appointment> Appointment.COMPARATOR_APPOINTMENT_END
          compares two Appointments by their end dates
static java.util.Comparator<Appointment> Appointment.COMPARATOR_APPOINTMENT_START
          compares two Appointments by their start dates
 

Methods in com.std.model.appointment that return Appointment
 Appointment AppointmentSet.ceiling(Appointment e)
           
 Appointment AppointmentSet.first()
           
 Appointment AppointmentSet.floor(Appointment e)
           
 Appointment AppointmentSet.higher(Appointment e)
           
 Appointment AppointmentSet.last()
           
 Appointment AppointmentSet.lower(Appointment e)
           
 Appointment AppointmentSet.pollFirst()
           
 Appointment AppointmentSet.pollLast()
           
 

Methods in com.std.model.appointment that return types with arguments of type Appointment
 java.util.Comparator<? super Appointment> AppointmentSet.comparator()
           
 java.util.Iterator<Appointment> AppointmentSet.descendingIterator()
           
 java.util.NavigableSet<Appointment> AppointmentSet.descendingSet()
           
 java.util.SortedSet<Appointment> AppointmentSet.headSet(Appointment toElement)
           
 java.util.NavigableSet<Appointment> AppointmentSet.headSet(Appointment toElement, boolean inclusive)
           
 java.util.Iterator<Appointment> AppointmentSet.iterator()
           
 java.util.SortedSet<Appointment> AppointmentSet.subSet(Appointment fromElement, Appointment toElement)
           
 java.util.NavigableSet<Appointment> AppointmentSet.subSet(Appointment fromElement, boolean fromInclusive, Appointment toElement, boolean toInclusive)
           
 java.util.SortedSet<Appointment> AppointmentSet.tailSet(Appointment fromElement)
           
 java.util.NavigableSet<Appointment> AppointmentSet.tailSet(Appointment fromElement, boolean inclusive)
           
 

Methods in com.std.model.appointment with parameters of type Appointment
 boolean AppointmentSet.add(Appointment e)
           
 void AppointmentSet.appointmentChanged(Appointment appt)
          notifies our listeners when an appointment has been changed.
 void StatefulAppointment.apptSetChanged(AppointmentSet apptSet, Appointment appt)
          resets the target when the target is removed from the set
 Appointment AppointmentSet.ceiling(Appointment e)
           
 Appointment AppointmentSet.floor(Appointment e)
           
 java.util.SortedSet<Appointment> AppointmentSet.headSet(Appointment toElement)
           
 java.util.NavigableSet<Appointment> AppointmentSet.headSet(Appointment toElement, boolean inclusive)
           
 Appointment AppointmentSet.higher(Appointment e)
           
 Appointment AppointmentSet.lower(Appointment e)
           
 void PersistentAppointmentSet.setModified(AppointmentSet apptSet, Appointment appt)
          sets this as modified whenever the current appointment set is changed
 void StatefulAppointment.setTarget(Appointment target)
          sets the target appointment
 java.util.SortedSet<Appointment> AppointmentSet.subSet(Appointment fromElement, Appointment toElement)
           
 java.util.NavigableSet<Appointment> AppointmentSet.subSet(Appointment fromElement, boolean fromInclusive, Appointment toElement, boolean toInclusive)
           
 java.util.SortedSet<Appointment> AppointmentSet.tailSet(Appointment fromElement)
           
 java.util.NavigableSet<Appointment> AppointmentSet.tailSet(Appointment fromElement, boolean inclusive)
           
 

Method parameters in com.std.model.appointment with type arguments of type Appointment
 boolean AppointmentSet.addAll(java.util.Collection<? extends Appointment> c)
           
 

Uses of Appointment in com.std.view
 

Methods in com.std.view that return Appointment
 Appointment AppointmentReadView.getAppointment()
           
 

Methods in com.std.view with parameters of type Appointment
 void AppointmentView.appointmentChanged(Appointment appt)
           
 void AppointmentReadView.updateAppointment(Appointment a)
           
 

Constructors in com.std.view with parameters of type Appointment
AppointmentReadView(Appointment a)