/**
 * A Driver for testing the Clock and AlarmClock classes
 */
public class Tester4
{
    /**
     * The enty point of the application
     *
     * @param args  The command line arguments
     */
    public static void main(String[] args)
    {
	Clock        home, paris;

	home  = createClock("Harrisonburg");
	paris = createClock("Paris");
    }


    /**
     * Create and setup a Clock
     *
     * @param clock   The clock to setup
     */
    private static AlarmClock createClock(String city)
    {
	AlarmClock      temp;

	temp = new AlarmClock(city);
	temp.reverseColors();
	temp.reverseColors;

	return temp;
    }

}
