Package org.discogs.ws.search

Examples of org.discogs.ws.search.ArtistSearchResult


          }

          for (SearchResult sr : srs) {
            if (sr instanceof ArtistSearchResult) {
              try {
                ArtistSearchResult asr = (ArtistSearchResult) sr;
                if (!artistAlreadyFound(asr.getTitle(), artists)) {
                  artists.add(asr.getArtist());
                }
              }
              catch (Exception e) {
                // failed to retrieve, don't bother
              }
View Full Code Here

TOP

Related Classes of org.discogs.ws.search.ArtistSearchResult

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.