filebot/source/net/sourceforge/tuned/ui/NullIconProvider.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

16 lines
213 B
Java

package net.sourceforge.tuned.ui;
import javax.swing.Icon;
public class NullIconProvider<T extends Object> implements IconProvider<T> {
@Override
public Icon getIcon(Object value) {
return null;
}
}