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
16 lines
213 B
Java
16 lines
213 B
Java
|
|
package net.sourceforge.tuned.ui;
|
|
|
|
|
|
import javax.swing.Icon;
|
|
|
|
|
|
public class NullIconProvider<T extends Object> implements IconProvider<T> {
|
|
|
|
@Override
|
|
public Icon getIcon(Object value) {
|
|
return null;
|
|
}
|
|
|
|
}
|