Package org.discogs.model

Examples of org.discogs.model.Label


  }

  @Override
  protected Label createObject(
      Element constructed) {
    return new Label(constructed,
      client);
  }
View Full Code Here


      String name) {
    try {
      String convName = URLEncoder.encode(name, "ISO-8859-1");
      Element resultE = loadResult("/label/" + convName);
    if (resultE != null)
    return new Label(resultE,
      this);
    return null;
    } catch (UnsupportedEncodingException e) {
      e.printStackTrace();
      return null;
View Full Code Here

          System.out.println("\t" + (i + 1) + ": " + curr.getTitle());
        }
      }
      Artist artist = discogs.getArtist("Richard H. Kirk", "Richard H Kirk");
      System.out.println(artist);
      Label label = discogs.getLabel("Warp Records");
      System.out.println(label.getProfile());
      // this fails on extended characters.
      artist = discogs.getArtist("Stéphane Pompougnac");
      System.out.println(artist.getProfile());
      Search s = discogs.search(SEARCH_TYPE_ARTIST, "Stéphane Pompougnac");
      System.out.println(s);
View Full Code Here

TOP

Related Classes of org.discogs.model.Label

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.