public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected,
boolean cellHasFocus) {
Component result = super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
if (value instanceof TestSuite) {
TestSuite item = (TestSuite) value;
setIcon(item.getIcon());
setText(item.getName());
}
return result;
}