artists.getSelectionModel().setSelectionInterval(0, 0);
artists.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
artists.getSelectionModel().addListSelectionListener(new ArtistSelectionListener(artists, this));
albums.getSelectionModel().setSelectionInterval(0, 0);
albums.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
albums.getSelectionModel().addListSelectionListener(new AlbumSelectionListener(albums, this));
mainSplit.setDividerLocation(PhoenixCore.INSTANCE.getSettings().getSettingAsInt(SettingKeys.SPLIT_MAIN_LIBVIEW_POS));
mainSplit.addPropertyChangeListener(
JSplitPane.DIVIDER_LOCATION_PROPERTY,
new DividerLocationPropertyChangeListener(SettingKeys.SPLIT_MAIN_LIBVIEW_POS, mainSplit));