/**
 * A message containing normal emergency information and a
 * supplemental alert.
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class Alert extends EmergencyMessage
{
    private String supplement;


    /**
     * Explicit Value Constructor.
     *
     * @param message      The main mesage
     * @param supplement   The supplemental information
     */
    public Alert(String message, String supplement)
    {
	super(message);
	this.supplement = supplement;
    }

    /**
     * Return the supplemental information.
     *
     * @return   The supplemental information
     */
    public String getSupplement()
    {
	return supplement;
    }
}


