Java ActionEvents and ActionListeners
an ActionListener is an interface for receiving action events, a class that should process action events should implement this interface, then be registered with a component.
an ActionListener can be registered with any object capable of it, typically this is an instance of an AbstactButton class like a JButton or JMenuItem.
Continue reading ‘Java ActionEvents and ActionListeners’ »