📄 timerlistener.java
字号:
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.examples.lib.timerbean;
/** The TimerListener interface must be implemented by
* a class that wants to be notified about time events.
*
* @version 1.00, Jul 20, 1998
*/
public interface TimerListener extends java.util.EventListener {
/** Called when a new timer event occurs */
public void onTime (java.awt.event.ActionEvent event);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -