activitylistener.java
来自「用applet实现很多应用小程序」· Java 代码 · 共 44 行
JAVA
44 行
package prefuse.activity;
import java.util.EventListener;
/**
* Callback interface by which interested classes can be notified of
* the progress of a scheduled activity.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface ActivityListener extends EventListener {
/**
* Called when an activity has been scheduled with an ActivityManager
* @param a the scheduled Activity
*/
public void activityScheduled(Activity a);
/**
* Called when an activity is first started.
* @param a the started Activity
*/
public void activityStarted(Activity a);
/**
* Called when an activity is stepped.
* @param a the stepped Activity
*/
public void activityStepped(Activity a);
/**
* Called when an activity finishes.
* @param a the finished Activity
*/
public void activityFinished(Activity a);
/**
* Called when an activity is cancelled.
* @param a the cancelled Activity
*/
public void activityCancelled(Activity a);
} // end of interface ActivityListener
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?