📄 timerlistener.java
字号:
/**
@version 1.10 1997-10-27
@author Cay Horstmann
*/
import java.util.*;
/**
An interface for being notified when a timer tick occurs.
*/
public interface TimerListener extends EventListener
{
/**
This method is called whenever the time between
notifications has elapsed.
@param evt the timer event that contains
the time of notification
*/
public void timeElapsed(TimerEvent evt);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -