package caltool.schedule_ui;

import caltool.schedule.*;
import caltool.caltool_ui.*;
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:
 *
 *                                                                     <ul><li>
 *                                                                    </li><li>
 *                                                                   </li></ul>
 *
 */
public class ConfirmMeetingDialog extends ScheduleAppointmentDialog {
    public ConfirmMeetingDialog(Screen screen, Schedule schedule,
            CalendarToolUI calToolUI) {
        super(screen, schedule, calToolUI);
    }
}