mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 08:55:08 -05:00
a401a51c75
* Changed EpisodeListClient and SubtitleClient from abstract classes to interfaces * OpenSubtitlesSubtitleClient: remove shutdownhook if not needed anymore * some refactoring
16 lines
173 B
Java
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);
|
|
|
|
}
|