Added block media
This commit is contained in:
@@ -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;
|
||||
* <element name="Advertisement" type="{}AdvertisementType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="LinearMedia" type="{}LinearMediaType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="PCICard" type="{}PCIType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="BlockMedia" type="{}BlockMediaType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user