
    /**
     * Update the time displayed on the clock
     */
    public void updateTime()
    {
	int         hourNow, minuteNow, secondNow;
	String      ampmNow;

	// Call the parent's version of updateTime()


	// If the alarm is on, get the current hour, minute
	// second, and ampm and check to see if the alarm
	// should sound now
    }
    
