📄 unrarcallback.java
字号:
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);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -