📄 eventtextfield.java
字号:
/** EventTextField class (abstract) Author: David Riley Date: May, 2004 */import java.awt.event.*;import javax.swing.JTextField;public abstract class EventTextField extends JTextField implements ActionListener { /** post: a new text field is instantiated */ public EventTextField() { super(); addActionListener( this ); } /* EVENT HANDLER - called in response to each scheduled event (This method is designed to be overridden.) */ public void actionPerformed( ActionEvent e ) { } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -