stopwatchclient.java
来自「awt图形界面的生成」· Java 代码 · 共 12 行
JAVA
12 行
/**
* Client of a Stopwatch. Stopwatches that have non-null
* clients, call their clients' tick() method every 50
* milliseconds.<p>
*
* @author David Geary
* @see Stopwatch
*/
public interface StopwatchClient {
public void tick(Stopwatch stopwatch);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?