Package org.discogs.dump

Source Code of org.discogs.dump.ArtistProducer

package org.discogs.dump;

import org.discogs.model.Artist;
import org.discogs.ws.Discogs;
import org.w3c.dom.Element;

public class ArtistProducer extends DiscogsDumpProducer<Artist> {

  private Discogs client;

  public ArtistProducer(Discogs client) {
    this();
    this.client = client;
  }

  public ArtistProducer() {
    super("artist");
  }

  @Override
  protected Artist createObject(
      Element constructed) {
    return new Artist(constructed,
      client);
  }

}
TOP

Related Classes of org.discogs.dump.ArtistProducer

TOP
Copyright © 2018 www.massapi.com. 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.