/**
 * A GUI window that contains an alarm clock
 * with a digital display
 *
 * @author  
 * @version 1.0
 */
public class AlarmClock extends Clock
{
    private boolean    on;
    private int        hour, minute, second;
    private String     ampm;



    /**
     * Default Constructor
     */
    public AlarmClock()
    {

    }


    /**
     * Explicit Value Constructor
     *
     * Constructs a clock for a particular city, setting
     * the time zone appropriately
     *
     * @param city   The city
     */
    public AlarmClock(String city)
    {

    }


    
}
