mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-09 22:09:47 -04:00

* 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
13 lines
136 B
Java
13 lines
136 B
Java
|
|
package net.sourceforge.tuned.ui;
|
|
|
|
|
|
import javax.swing.Icon;
|
|
|
|
|
|
public interface IconProvider<T> {
|
|
|
|
public Icon getIcon(T value);
|
|
|
|
}
|