import java.awt.event.*;
import javax.swing.*;

/**
 * A placeholder for an Action associated with arrow buttons.
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class ArrowAction extends AbstractAction
{
    /**
     * Handle an actionPerformed() message (required by AbstractAction).
     * Specifically, output the action command on the console.
     *
     * @param evt  The ActionEvent that generated the message.
     */
    public void actionPerformed(ActionEvent evt)
    {
        System.out.println(evt.getActionCommand());
    }
}
