📄 eventbutton.java
字号:
import java.awt.event.*;import javax.swing.JButton;/** EventButton class (abstract) * Author: David Riley * Date: May, 2004 */public abstract class EventButton extends JButton implements ActionListener { /** post: this is created with itself as an action listener * and getText() == s */ public EventButton(String s) { super(s); addActionListener(this); } public abstract void actionPerformed( ActionEvent e );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -