public Component getListCellRendererComponent(JList list,
Object value,
int index,
boolean isSelected,
boolean cellHasFocus) {
DirectoryItem item = (DirectoryItem) value;
label.setText(item.getTitle());
Color color;
if(isSelected || cellHasFocus) {
color = list.getSelectionBackground();