public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
if (!(value instanceof Template)) {
throw new IllegalArgumentException();
}
Template template = (Template) value;
return super.getListCellRendererComponent(list, template.getName(), index, isSelected, cellHasFocus);
}