📄 activitylistener.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -