Added audio media

This commit is contained in:
2015-11-09 05:10:02 +00:00
parent c55b168ffd
commit 9d5cdb2539
73 changed files with 1458 additions and 72 deletions

View File

@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.11.09 at 04:57:50 AM WET
// Generated on: 2015.11.09 at 05:09:39 AM WET
//
@@ -67,6 +67,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="LinearMedia" type="{}LinearMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="PCICard" type="{}PCIType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="BlockMedia" type="{}BlockMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="AudioMedia" type="{}AudioMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -102,7 +103,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
"advertisement",
"linearMedia",
"pciCard",
"blockMedia"
"blockMedia",
"audioMedia"
})
public class CICMMetadataType {
@@ -159,6 +161,8 @@ public class CICMMetadataType {
protected List<PCIType> pciCard;
@XmlElement(name = "BlockMedia")
protected List<BlockMediaType> blockMedia;
@XmlElement(name = "AudioMedia")
protected List<AudioMediaType> audioMedia;
/**
* Gets the value of the developer property.
@@ -844,4 +848,33 @@ public class CICMMetadataType {
return this.blockMedia;
}
/**
* Gets the value of the audioMedia property.
*
* <p>
* 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 <CODE>set</CODE> method for the audioMedia property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAudioMedia().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link AudioMediaType }
*
*
*/
public List<AudioMediaType> getAudioMedia() {
if (audioMedia == null) {
audioMedia = new ArrayList<AudioMediaType>();
}
return this.audioMedia;
}
}