1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/source/net/sourceforge/tuned/ui/LabelProvider.java
Reinhard Pointner a401a51c75 * changed IconProvider to LabelProvider (provides text and icon)
* Changed EpisodeListClient and SubtitleClient from abstract classes to interfaces
* OpenSubtitlesSubtitleClient: remove shutdownhook if not needed anymore
* some refactoring
2008-07-13 17:59:05 +00:00

16 lines
173 B
Java

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