1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-01-12 14:28:29 -05:00
filebot/source/net/sourceforge/tuned/ui/LabelProvider.java

16 lines
173 B
Java
Raw Normal View History

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