
/**
 * An object that puts up a dialog that says goodbye when the user
 * performs an action that requests this
 * 
 * @author Russell C. Bjork 
 * @version March 3, 2008
 */

import java.awt.event.*;
import javax.swing.*;

public class SayGoodbye implements ActionListener
{
    public void actionPerformed(ActionEvent e)
    {
        JOptionPane.showMessageDialog(null, "Goodbye");
    }
}