Package com.github.hakko.musiccabinet.parser.musicbrainz

Examples of com.github.hakko.musiccabinet.parser.musicbrainz.ReleaseParserImpl


      try {
        int offset = 0;
        do {
          StringUtil response = new StringUtil(releaseClient.get(
            artist.getName(), artist.getMbid(), offset));
          parser = new ReleaseParserImpl(response.getInputStream());
          for (MBRelease album : parser.getReleases()) {
            album.setArtistId(artist.getId());
          }
          mbReleases.addAll(parser.getReleases());
          offset += 100;
View Full Code Here

TOP

Related Classes of com.github.hakko.musiccabinet.parser.musicbrainz.ReleaseParserImpl

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.