?? unrarcallback.java
字號(hào):
package de.innosystec.unrar;
import java.io.File;
/**
*
* @author alban
*/
public interface UnrarCallback {
/**
* Return <tt>true</tt> if the next volume is ready to be processed,
* <tt>false</tt> otherwise.
*/
boolean isNextVolumeReady(File nextVolume);
/**
* This method is invoked each time the progress of the current
* volume changes.
*/
void volumeProgressChanged(long current, long total);
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -