@Override
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
TreeListCellRenderer.this.updateUI();
super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
int depth = (value instanceof BOProject) ? 0 : getDepth((BODepartment) value);// somehow
IndentBorder indentBorder = new IndentBorder();
indentBorder.setDepth(depth);
setBorder(indentBorder);
return this;
}