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.
See Also:
  • Method Details

    • buttonClicked

      void buttonClicked(ActionEvent evt)
      Invoked when the button part is clicked.
      Parameters:
      evt - The event
    • splitButtonClicked

      void splitButtonClicked(ActionEvent evt)
      Invoked when split part is clicked.
      Parameters:
      evt - The event