/**
 * A driver for testing the ControllableAlarmClock class
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class ClockDriver
{
    public static void main(String[] args)
    {
       ControllableAlarmClock        clock;
       

       clock      = new ControllableAlarmClock();
    }
    
}
