1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/source/net/filebot/util/ui/LabelProvider.java
Reinhard Pointner 8299e849aa * Format Source
2015-07-25 22:47:19 +00:00

16 lines
165 B
Java

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