Added advertisement support

This commit is contained in:
2015-11-07 05:28:44 +00:00
parent 366b77f457
commit cebd14f68b
62 changed files with 5883 additions and 1970 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.07 at 02:55:57 AM WET
// Generated on: 2015.11.07 at 05:27:06 AM WET
//
@@ -61,6 +61,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="RequiredOperatingSystems" type="{}RequiredOperatingSystemsType" minOccurs="0"/>
* &lt;element name="UserManual" type="{}UserManualType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="OpticalDisc" type="{}OpticalDiscType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Advertisement" type="{}AdvertisementType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -92,7 +93,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
"architectures",
"requiredOperatingSystems",
"userManual",
"opticalDisc"
"opticalDisc",
"advertisement"
})
public class CICMMetadataType {
@@ -141,6 +143,8 @@ public class CICMMetadataType {
protected List<UserManualType> userManual;
@XmlElement(name = "OpticalDisc")
protected List<OpticalDiscType> opticalDisc;
@XmlElement(name = "Advertisement")
protected List<AdvertisementType> advertisement;
/**
* Gets the value of the developer property.
@@ -710,4 +714,33 @@ public class CICMMetadataType {
return this.opticalDisc;
}
/**
* Gets the value of the advertisement 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 advertisement property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAdvertisement().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link AdvertisementType }
*
*
*/
public List<AdvertisementType> getAdvertisement() {
if (advertisement == null) {
advertisement = new ArrayList<AdvertisementType>();
}
return this.advertisement;
}
}