程序包 org.meteoinfo.ui
接口 SplitButtonActionListener
-
- 所有超级接口:
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.- 作者:
- Naveed Quadri
- 另请参阅:
ActionEvent
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidbuttonClicked(ActionEvent e)Invoked when the button part is clicked.voidsplitButtonClicked(ActionEvent e)Invoked when split part is clicked.
-
-
-
方法详细资料
-
buttonClicked
void buttonClicked(ActionEvent e)
Invoked when the button part is clicked.- 参数:
e-
-
splitButtonClicked
void splitButtonClicked(ActionEvent e)
Invoked when split part is clicked.- 参数:
e-
-
-