This interface defines the method that an object must implement to "listen" for action events on AWT components. When an ActionEvent occurs, an AWT component notifies its registered ActionListener objects by invoking their actionPerformed() methods.
public abstract interface ActionListener extends EventListener { // Public Instance Methods public abstract void actionPerformed(ActionEvent e); }
AWTEventMulticaster
AWTEventMulticaster.add(), AWTEventMulticaster.remove(), Button.addActionListener(), Button.removeActionListener(), List.addActionListener(), List.removeActionListener(), MenuItem.addActionListener(), MenuItem.removeActionListener(), TextField.addActionListener(), TextField.removeActionListener()
AWTEventMulticaster.add(), AWTEventMulticaster.remove()