final JBList fileList = new JBList(ArrayUtil.EMPTY_STRING_ARRAY);
fileList.setBorder(BorderFactory.createLineBorder(Color.lightGray));
fileList.addListSelectionListener(new ListSelectionListener() {
@Override
public void valueChanged(ListSelectionEvent e) {
fileList.clearSelection();
}
});
fileList.setFocusable(false);
fileList.setRequestFocusEnabled(false);
fileList.setBackground(Gray._242);