Package com.tulskiy.musique.plugins.discogs.model

Examples of com.tulskiy.musique.plugins.discogs.model.DiscogsArtistListModel


      }
    });
    scrollPane_1.setViewportView(lstReleases);

    lstArtists.setToolTipText("List of artists fit query string.");
    lstArtists.setModel(new DiscogsArtistListModel());
    lstArtists.addListSelectionListener(new ListSelectionListener() {
      public void valueChanged(ListSelectionEvent arg0) {
        DiscogsArtistListModel artistModel = (DiscogsArtistListModel) lstArtists.getModel();
        ListSelectionModel selectionModel = lstArtists.getSelectionModel();
        if (!selectionModel.isSelectionEmpty() && !arg0.getValueIsAdjusting()) {
          Artist artist = artistModel.getEx(selectionModel.getMinSelectionIndex());
          if (artist != null) {
            DiscogsReleaseListModel releaseModel = (DiscogsReleaseListModel) lstReleases.getModel();

            releaseModel.clear();
            for (ArtistRelease release : artist.getReleases()) {
View Full Code Here

TOP

Related Classes of com.tulskiy.musique.plugins.discogs.model.DiscogsArtistListModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.