filebot/source/net/sourceforge/tuned/ui/IconProvider.java
Reinhard Pointner adb4d68055 * Lazy XPath evaluation for EpisodeList/Subtitle Clients
* 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
2008-06-21 19:24:18 +00:00

13 lines
136 B
Java

package net.sourceforge.tuned.ui;
import javax.swing.Icon;
public interface IconProvider<T> {
public Icon getIcon(T value);
}