Added Linear media, like flash, ram, rom, cartridge, etc

This commit is contained in:
2015-11-09 03:45:04 +00:00
parent ebd39dd982
commit 9b6d7356ad
60 changed files with 1388 additions and 770 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 05:27:06 AM WET
// Generated on: 2015.11.09 at 03:41:35 AM WET
//
@@ -62,6 +62,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &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;element name="LinearMedia" type="{}LinearMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -94,7 +95,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
"requiredOperatingSystems",
"userManual",
"opticalDisc",
"advertisement"
"advertisement",
"linearMedia"
})
public class CICMMetadataType {
@@ -145,6 +147,8 @@ public class CICMMetadataType {
protected List<OpticalDiscType> opticalDisc;
@XmlElement(name = "Advertisement")
protected List<AdvertisementType> advertisement;
@XmlElement(name = "LinearMedia")
protected List<LinearMediaType> linearMedia;
/**
* Gets the value of the developer property.
@@ -743,4 +747,33 @@ public class CICMMetadataType {
return this.advertisement;
}
/**
* Gets the value of the linearMedia 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 linearMedia property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getLinearMedia().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link LinearMediaType }
*
*
*/
public List<LinearMediaType> getLinearMedia() {
if (linearMedia == null) {
linearMedia = new ArrayList<LinearMediaType>();
}
return this.linearMedia;
}
}