

    /**
     * Set the alarm
     *
     * @param hour     The hour of the alarm
     * @param minute   The minute of the alarm
     * @param second   The second of the alarm
     * @param ampm     "AM" for before noon, "PM" for noon and after
     */
    public void setAlarm(int hour, int minute, int second, String ampm)
    {
        
    }


    /**
     * Turn the alarm off
     */
    public void turnAlarmOff()
    {
	on = false;
    }



    /**
     * Turn the alarm on
     */
    public void turnAlarmOn()
    {
	on = true;
    }

