package caltool.view.schedule; import caltool.model.schedule.*; import caltool.view.*; import mvp.*; import javax.swing.*; import java.awt.*; /**** * * Class ConfirmMeetingDialog extends ScheduleAppointmentDialog, , since the * two dialogs have much in common. (This is to be expected given that the * Meeting model class is an extension of the Appointment model class.) The * differences between the meeting and appointment dialogs are as follows: * * * */ public class ConfirmMeetingDialog extends ScheduleAppointmentDialog { public ConfirmMeetingDialog(Screen screen, Schedule schedule, CalendarToolUI calToolUI) { super(screen, schedule, calToolUI); } }