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
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);
|
|
|
|
}
|