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