summaryrefslogtreecommitdiff
path: root/src/com/github/junrar/UnrarCallback.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/github/junrar/UnrarCallback.java')
-rw-r--r--src/com/github/junrar/UnrarCallback.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/com/github/junrar/UnrarCallback.java b/src/com/github/junrar/UnrarCallback.java
deleted file mode 100644
index 06bc088..0000000
--- a/src/com/github/junrar/UnrarCallback.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.github.junrar;
-
-
-/**
- *
- * @author alban
- */
-public interface UnrarCallback {
-
- /**
- * Return <tt>true</tt> if the next volume is ready to be processed,
- * <tt>false</tt> otherwise.
- */
- boolean isNextVolumeReady(Volume nextVolume);
-
- /**
- * This method is invoked each time the progress of the current
- * volume changes.
- */
- void volumeProgressChanged(long current, long total);
-}