mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
adb4d68055
* AbstractSearchPanel (used in SubtitlePanel only so far) * started using GlazedLists * replaced searchtextfield with customized combobox (will be used for completion in the future) * renamed FileFormat to FileUtil and move to tuned * removed ESC shortcut
16 lines
183 B
Java
16 lines
183 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
import java.util.Iterator;
|
|
|
|
|
|
public interface ProgressIterator<E> extends Iterator<E> {
|
|
|
|
public int getPosition();
|
|
|
|
|
|
public int getLength();
|
|
|
|
}
|