
    /**
     * 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; check to see if the alarm
	// should sound now; if it should, sound the alarm
    }
    
