Interface ButtonClickedActionListener

All Superinterfaces:
ActionListener, EventListener

public interface ButtonClickedActionListener extends ActionListener
The listener interface for receiving the button clicked ActionEvent. The class that is interested in processing an action event implements this interface, and the object created with that class is registered with a component, using the component's JSplitButton.addButtonClickedActionListener(ButtonClickedActionListener) method. When the action event occurs, that object's ActionListener.actionPerformed(java.awt.event.ActionEvent) method is invoked.