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

org.musicbrainz.ns.mmd_2.FreedbDisc 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.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}title"/>
 *         <element name="artist" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}category" minOccurs="0"/>
 *         <element ref="{http://musicbrainz.org/ns/mmd-2.0#}year" minOccurs="0"/>
 *         <group ref="{http://musicbrainz.org/ns/mmd-2.0#}def_nonmb-track-list"/>
 *         <group ref="{http://musicbrainz.org/ns/mmd-2.0#}def_freedb-disc-element_extension"/>
 *       </sequence>
 *       <attGroup ref="{http://musicbrainz.org/ns/mmd-2.0#}def_freedb-disc-attribute_extension"/>
 *       <attribute name="id">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <pattern value="[a-zA-Z0-9]{8}"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "title", "artist", "category", "year", "trackList", "defExtensionElement" }) @XmlRootElement(name = "freedb-disc") public class FreedbDisc { @XmlElement(required = true) protected String title; protected String artist; protected String category; protected String year; @XmlElement(name = "track-list", required = true) protected org.musicbrainz.ns.mmd_2.Cdstub.TrackList trackList; @XmlAnyElement protected List defExtensionElement; @XmlAttribute protected String id; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * 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 artist property. * * @return * possible object is * {@link String } * */ public String getArtist() { return artist; } /** * Sets the value of the artist property. * * @param value * allowed object is * {@link String } * */ public void setArtist(String value) { this.artist = value; } /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } /** * Gets the value of the year property. * * @return * possible object is * {@link String } * */ public String getYear() { return year; } /** * Sets the value of the year property. * * @param value * allowed object is * {@link String } * */ public void setYear(String value) { this.year = value; } /** * Gets the value of the trackList property. * * @return * possible object is * {@link org.musicbrainz.ns.mmd_2.Cdstub.TrackList } * */ public org.musicbrainz.ns.mmd_2.Cdstub.TrackList getTrackList() { return trackList; } /** * Sets the value of the trackList property. * * @param value * allowed object is * {@link org.musicbrainz.ns.mmd_2.Cdstub.TrackList } * */ public void setTrackList(org.musicbrainz.ns.mmd_2.Cdstub.TrackList value) { this.trackList = value; } /** * Gets the value of the defExtensionElement property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the defExtensionElement property. * *

* For example, to add a new item, do as follows: *

     *    getDefExtensionElement().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * * */ public List getDefExtensionElement() { if (defExtensionElement == null) { defExtensionElement = new ArrayList(); } return this.defExtensionElement; } /** * 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; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy