///****************************************************************** // TestAppointment.java Author: Anders Keldsen 14/10-2002 // // Testing the Appointment class //****************************************************************** public class TestAppointment { public static void main(String[] args) { Appointment p = new Appointment(new Time(8, 0), new Time(12, 0), "learning java"); //Verifying that data is set correctly in p System.out.println(p); //Prolonging the appointment p.prolong(60); System.out.println(p); //Postponing the appointment p.postpone(60); System.out.println(p); } }