Package swingtree.components.action
Interface SplitButtonActionListener
- All Superinterfaces:
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 Summary
Modifier and TypeMethodDescriptionvoidbuttonClicked(ActionEvent evt) Invoked when the button part is clicked.voidInvoked when split part is clicked.
-
Method Details
-
buttonClicked
Invoked when the button part is clicked.- Parameters:
evt- The event
-
splitButtonClicked
Invoked when split part is clicked.- Parameters:
evt- The event
-