Interface SplitButtonActionListener

All Superinterfaces:
EventListener

public interface SplitButtonActionListener extends EventListener
The listener interface for receiving action events. 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 addSplitButtonActionListener method. When the action event occurs, that object's buttonClicked or splitButtonClicked method is invoked.
Author:
Naveed Quadri
See Also:
  • Method Details

    • buttonClicked

      void buttonClicked(ActionEvent e)
      Invoked when the button part is clicked.
    • splitButtonClicked

      void splitButtonClicked(ActionEvent e)
      Invoked when split part is clicked.