?? timerlistener.java
字號:
/* * @(#)TimerListener * * Copyright (c) 1998 Karl Moss. All Rights Reserved. * * You may study, use, modify, and distribute this software for any * purpose provided that this copyright notice appears in all copies. * * This software is provided WITHOUT WARRANTY either expressed or * implied. * * @author Karl Moss * @version 1.0 * @date 11Mar98 * */package javaservlets.timer;/** * <p>This interface is implemented by classes that wish to * receive timer events. The Timer class will invoke the * TimerEvent method for every time interval specified when * the Timer is started. This gives the implementing class * an opportunity to perform some type of time-dependent * checking. */public interface TimerListener{ /** * <p>Called for each timer clock cycle */ void TimerEvent(Object object);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -