mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-09 13:59:49 -04:00

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