package caltool.model.model.schedule;

/****
 *
 * RemindWhere defines one of three ways that the user is alerted when a
 * scheduled event is to occur.  OnScreen means the user is reminded with a
 * op-up alert on her computer screen.  BeepOnly means the user is reminded
 * with a simple audible tone on the computer.  Email means the user is sent an
 * electronic mail message reminder.
 *
 */

public enum RemindWhere {

    /** Indicates that reminders are displayed in an on-screen pop-up window. */
    OnScreen,

   /** Indicates that reminders are signaled with an audible beep only, with
       no pop-up window. */
    BeepOnly,

    /** Indicates that reminders are send as email messages. */
    Email

}