?? controller.java
字號:
package loader.controller;
import loader.loader.*;
/**
*/
public interface Controller {
public final static int STOP = 0;
public final static int CONTINUE = 1;
/**
this method will be called by loader to be registered himself.
*/
public void register( Loader loader );
/**
set init state of the threads controlled by this controller.
*/
public void init( int control_flag );
/**
control the threads behaviors.
*/
public void control( int control_flag );
public void waitDie();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -