Added PCI, USB, ATA, SCSI, SD, MMC information fields
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 03:41:35 AM WET
|
||||
// Generated on: 2015.11.09 at 04:13:07 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -63,6 +63,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <element name="OpticalDisc" type="{}OpticalDiscType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <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"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -96,7 +97,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
"userManual",
|
||||
"opticalDisc",
|
||||
"advertisement",
|
||||
"linearMedia"
|
||||
"linearMedia",
|
||||
"pciCard"
|
||||
})
|
||||
public class CICMMetadataType {
|
||||
|
||||
@@ -149,6 +151,8 @@ public class CICMMetadataType {
|
||||
protected List<AdvertisementType> advertisement;
|
||||
@XmlElement(name = "LinearMedia")
|
||||
protected List<LinearMediaType> linearMedia;
|
||||
@XmlElement(name = "PCICard")
|
||||
protected List<PCIType> pciCard;
|
||||
|
||||
/**
|
||||
* Gets the value of the developer property.
|
||||
@@ -776,4 +780,33 @@ public class CICMMetadataType {
|
||||
return this.linearMedia;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pciCard 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 pciCard property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPCICard().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link PCIType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PCIType> getPCICard() {
|
||||
if (pciCard == null) {
|
||||
pciCard = new ArrayList<PCIType>();
|
||||
}
|
||||
return this.pciCard;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user