?? appproxy.java
字號:
package org.dvb.application;
public interface AppProxy {
public static final int STARTED = 0;
public static final int DESTROYED = 1;
public static final int NOT_LOADED = 2;
public static final int PAUSED = 3;
public int getState();
public void start();
public void start(java.lang.String[] args);
public void stop(boolean forced);
public void pause();
public void resume();
public void addAppStateChangeEventListener( AppStateChangeEventListener listener);
public void removeAppStateChangeEventListener( AppStateChangeEventListener listener);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -