mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
adb4d68055
* AbstractSearchPanel (used in SubtitlePanel only so far) * started using GlazedLists * replaced searchtextfield with customized combobox (will be used for completion in the future) * renamed FileFormat to FileUtil and move to tuned * removed ESC shortcut
66 lines
1.3 KiB
Java
66 lines
1.3 KiB
Java
|
|
package net.sourceforge.tuned.ui;
|
|
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
import javax.swing.Icon;
|
|
|
|
import net.sourceforge.tuned.ExceptionUtil;
|
|
|
|
|
|
/**
|
|
* <code>IconProvider</code> based on reflection.
|
|
*/
|
|
public class SimpleIconProvider<T> implements IconProvider<T> {
|
|
|
|
private final Method getIconMethod;
|
|
|
|
|
|
/**
|
|
* Same as <code>new SimpleIconProvider<T>(T.class)</code>.
|
|
*
|
|
* @return new <code>IconProvider</code>
|
|
*/
|
|
public static <T> SimpleIconProvider<T> forClass(Class<T> type) {
|
|
return new SimpleIconProvider<T>(type);
|
|
}
|
|
|
|
|
|
/**
|
|
* Create a new IconProvider which will use the <code>getIcon</code> method of the given
|
|
* class.
|
|
*
|
|
* @param type a class with a <code>getIcon</code> method
|
|
*/
|
|
public SimpleIconProvider(Class<T> type) {
|
|
this(type, "getIcon");
|
|
}
|
|
|
|
|
|
/**
|
|
* Create a new IconProvider which will use a specified method of a given class
|
|
*
|
|
* @param type a class with the specified method
|
|
* @param getIcon a method name such as <code>getIcon</code>
|
|
*/
|
|
public SimpleIconProvider(Class<T> type, String getIcon) {
|
|
try {
|
|
getIconMethod = type.getMethod(getIcon);
|
|
} catch (Exception e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
public Icon getIcon(T value) {
|
|
try {
|
|
return (Icon) getIconMethod.invoke(value);
|
|
} catch (Exception e) {
|
|
throw ExceptionUtil.asRuntimeException(e);
|
|
}
|
|
}
|
|
|
|
}
|