Package org.discogs.dump

Source Code of org.discogs.dump.LabelProducer

package org.discogs.dump;

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

public class LabelProducer extends DiscogsDumpProducer<Label> {

  private Discogs client;

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

  public LabelProducer() {
    super("label");
  }

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

}
TOP

Related Classes of org.discogs.dump.LabelProducer

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.