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'saddSplitButtonActionListenermethod. When the action event occurs, that object'sbuttonClickedorsplitButtonClickedmethod is invoked.- Author:
- Naveed Quadri
- See Also:
ActionEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbuttonClicked(ActionEvent e)Invoked when the button part is clicked.voidsplitButtonClicked(ActionEvent e)Invoked when split part is clicked.
-
-
-
Method Detail
-
buttonClicked
void buttonClicked(ActionEvent e)
Invoked when the button part is clicked.
-
splitButtonClicked
void splitButtonClicked(ActionEvent e)
Invoked when split part is clicked.
-
-