All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.musicbrainz.ns.mmd_2.DefTrackData Maven / Gradle / Ivy

There is a newer version: 1.0-ALPHA-12
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.04.12 at 04:01:25 PM CEST 
//


package org.musicbrainz.ns.mmd_2;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for def_track-data complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="def_track-data">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}position" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}number" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}title" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}length" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}artist-credit" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}recording" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "def_track-data", propOrder = { "position", "number", "title", "length", "artistCredit", "recording" }) public class DefTrackData { @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger position; protected String number; protected String title; @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger length; @XmlElement(name = "artist-credit") protected ArtistCredit artistCredit; protected Recording recording; @XmlAttribute @XmlSchemaType(name = "anyURI") protected String id; /** * Gets the value of the position property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPosition() { return position; } /** * Sets the value of the position property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPosition(BigInteger value) { this.position = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link BigInteger } * */ public void setLength(BigInteger value) { this.length = value; } /** * Gets the value of the artistCredit property. * * @return * possible object is * {@link ArtistCredit } * */ public ArtistCredit getArtistCredit() { return artistCredit; } /** * Sets the value of the artistCredit property. * * @param value * allowed object is * {@link ArtistCredit } * */ public void setArtistCredit(ArtistCredit value) { this.artistCredit = value; } /** * Gets the value of the recording property. * * @return * possible object is * {@link Recording } * */ public Recording getRecording() { return recording; } /** * Sets the value of the recording property. * * @param value * allowed object is * {@link Recording } * */ public void setRecording(Recording value) { this.recording = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy