The ActionListener Interface
ActionListener is an interface in the core package java.awt.event
ActionListener declares one method: public interface ActionListener { public void actionPerformed( ActionEvent e ); }
Any class that implements this interface must implement the actionPerformed(…) method