Added block media

This commit is contained in:
2015-11-09 04:58:17 +00:00
parent 322a1a3322
commit c55b168ffd
71 changed files with 4957 additions and 280 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:13:07 AM WET
// Generated on: 2015.11.09 at 04:57:50 AM WET
//
@@ -19,6 +19,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
/**
* Digital Asset Metadata
*
* <p>Java class for CICMMetadataType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
@@ -64,6 +66,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="Advertisement" type="{}AdvertisementType" maxOccurs="unbounded" minOccurs="0"/>
* &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;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -98,7 +101,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
"opticalDisc",
"advertisement",
"linearMedia",
"pciCard"
"pciCard",
"blockMedia"
})
public class CICMMetadataType {
@@ -153,6 +157,8 @@ public class CICMMetadataType {
protected List<LinearMediaType> linearMedia;
@XmlElement(name = "PCICard")
protected List<PCIType> pciCard;
@XmlElement(name = "BlockMedia")
protected List<BlockMediaType> blockMedia;
/**
* Gets the value of the developer property.
@@ -809,4 +815,33 @@ public class CICMMetadataType {
return this.pciCard;
}
/**
* Gets the value of the blockMedia 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 blockMedia property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getBlockMedia().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BlockMediaType }
*
*
*/
public List<BlockMediaType> getBlockMedia() {
if (blockMedia == null) {
blockMedia = new ArrayList<BlockMediaType>();
}
return this.blockMedia;
}
}