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.- Author:
- Naveed Quadri
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidInvoked when the button part is clicked.voidInvoked when split part is clicked.
-
Method Details
-
buttonClicked
Invoked when the button part is clicked. -
splitButtonClicked
Invoked when split part is clicked.
-