Added PCI, USB, ATA, SCSI, SD, MMC information fields

This commit is contained in:
2015-11-09 04:13:37 +00:00
parent 9b6d7356ad
commit 322a1a3322
60 changed files with 490 additions and 57 deletions

View File

@@ -318,4 +318,24 @@
</CIS>
</PCMCIA>
</LinearMedia>
<PCICard>
<VendorID>1</VendorID>
<DeviceID>1</DeviceID>
<Configuration>
<Image>Image</Image>
<Size>0</Size>
<Checksums>
<Checksum type="fletcher16">Checksum</Checksum>
</Checksums>
</Configuration>
<ExpansionROM>
<Image format="" offset="0">Image</Image>
<Size>0</Size>
<ImageChecksums>
<Checksum type="fletcher16">Checksum</Checksum>
</ImageChecksums>
<Title>Title</Title>
<Package>Package</Package>
</ExpansionROM>
</PCICard>
</CICMMetadata>

170
cicm.xsd
View File

@@ -1253,6 +1253,11 @@
<xs:documentation>Linear media (flash, ram, rom, cartridges)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="PCIType" name="PCICard" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Dump of a PCI/PCI-X/PCIe configuration space and/or expansion ROM</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="BarcodesType">
@@ -2459,4 +2464,169 @@
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PCIType">
<xs:annotation>
<xs:documentation>Contains PCI/PCI-X/PCIe card information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="VendorID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains PCI Vendor ID</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="65534"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DeviceID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains PCI Device ID</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="65534"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element type="DumpType" name="Configuration" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Binary dump of the PCI configuration space</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="LinearMediaType" name="ExpansionROM" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Binary dump of the PCI expansion rom</xs:documentation>
</xs:annotation></xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="EVPDType">
<xs:sequence>
<xs:element type="xs:string" name="Image" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>File containing SCSI Extended Vendor Page Descriptor dump</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:string" name="Size" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Size of SCSI Extended Vendor Page Descriptor dump</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="ChecksumsType" name="Checksums" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Checksums of SCSI Extended Vendor Page Descriptor dump</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="page">
<xs:annotation>
<xs:documentation>EVPD page</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1" />
<xs:maxInclusive value="255" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
<xs:complexType name="SCSIType">
<xs:annotation>
<xs:documentation>Contains SCSI device information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element type="DumpType" name="Inquiry" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SCSI INQUIRY result dump</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="EVPDType" name="EVPD" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Contains SCSI EVPD dumps</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="DumpType" name="ModeSense" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SCSI MODE SENSE(6) dump</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="DumpType" name="ModeSense10" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SCSI MODE SENSE(10) dump</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="DumpType" name="LogSense" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SCSI LOG SENSE dump</xs:documentation>
</xs:annotation></xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="USBType">
<xs:annotation>
<xs:documentation>Contains USB device information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="VendorID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains USB Vendor ID</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="65534"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ProductID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains USB Product ID</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="65534"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element type="DumpType" name="Descriptors" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Binary dump of the USB descriptors</xs:documentation>
</xs:annotation></xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="SecureDigitalType">
<xs:annotation>
<xs:documentation>Contains SD/MMC device information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element type="DumpType" name="CID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SD/MMC's CID</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="DumpType" name="CSD" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SD/MMC's CSD</xs:documentation>
</xs:annotation></xs:element>
<xs:element type="DumpType" name="ExtendedCSD" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains SD/MMC's extended CSD</xs:documentation>
</xs:annotation></xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ATAType">
<xs:annotation>
<xs:documentation>Contains ATA/ATAPI device information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element type="DumpType" name="Identify" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Contains ATA/ATAPI IDENTIFY binary dump</xs:documentation>
</xs:annotation></xs:element>
</xs:sequence>
</xs:complexType>
</xs:schema>

View File

@@ -74,6 +74,8 @@ namespace Schemas {
private LinearMediaType[] linearMediaField;
private PCIType[] pCICardField;
/// <remarks>
///Developer of the set
///</remarks>
@@ -397,6 +399,19 @@ namespace Schemas {
this.linearMediaField = value;
}
}
/// <remarks>
///Dump of a PCI/PCI-X/PCIe configuration space and/or expansion ROM
///</remarks>
[System.Xml.Serialization.XmlElementAttribute("PCICard")]
public PCIType[] PCICard {
get {
return this.pCICardField;
}
set {
this.pCICardField = value;
}
}
}
/// <remarks/>
@@ -6826,4 +6841,70 @@ namespace Schemas {
}
}
}
/// <remarks>
///Contains PCI/PCI-X/PCIe card information
///</remarks>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class PCIType {
private int vendorIDField;
private int deviceIDField;
private DumpType configurationField;
private LinearMediaType expansionROMField;
/// <remarks>
///Contains PCI Vendor ID
///</remarks>
public int VendorID {
get {
return this.vendorIDField;
}
set {
this.vendorIDField = value;
}
}
/// <remarks>
///Contains PCI Device ID
///</remarks>
public int DeviceID {
get {
return this.deviceIDField;
}
set {
this.deviceIDField = value;
}
}
/// <remarks>
///Binary dump of the PCI configuration space
///</remarks>
public DumpType Configuration {
get {
return this.configurationField;
}
set {
this.configurationField = value;
}
}
/// <remarks>
///Binary dump of the PCI expansion rom
///</remarks>
public LinearMediaType ExpansionROM {
get {
return this.expansionROMField;
}
set {
this.expansionROMField = value;
}
}
}
}

View File

@@ -77,6 +77,8 @@ Namespace Schemas
Private linearMediaField As LinearMediaType()
Private pCICardField As PCIType()
'''<remarks>
'''Developer of the set
'''</remarks>
@@ -400,6 +402,19 @@ Namespace Schemas
Me.linearMediaField = Value
End Set
End Property
'''<remarks>
'''Dump of a PCI/PCI-X/PCIe configuration space and/or expansion ROM
'''</remarks>
<System.Xml.Serialization.XmlElementAttribute("PCICard")> _
Public Property PCICard() As PCIType()
Get
Return Me.pCICardField
End Get
Set
Me.pCICardField = Value
End Set
End Property
End Class
'''<remarks/>
@@ -6829,4 +6844,70 @@ Namespace Schemas
End Set
End Property
End Class
'''<remarks>
'''Contains PCI/PCI-X/PCIe card information
'''</remarks>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class PCIType
Private vendorIDField As Integer
Private deviceIDField As Integer
Private configurationField As DumpType
Private expansionROMField As LinearMediaType
'''<remarks>
'''Contains PCI Vendor ID
'''</remarks>
Public Property VendorID() As Integer
Get
Return Me.vendorIDField
End Get
Set
Me.vendorIDField = Value
End Set
End Property
'''<remarks>
'''Contains PCI Device ID
'''</remarks>
Public Property DeviceID() As Integer
Get
Return Me.deviceIDField
End Get
Set
Me.deviceIDField = Value
End Set
End Property
'''<remarks>
'''Binary dump of the PCI configuration space
'''</remarks>
Public Property Configuration() As DumpType
Get
Return Me.configurationField
End Get
Set
Me.configurationField = Value
End Set
End Property
'''<remarks>
'''Binary dump of the PCI expansion rom
'''</remarks>
Public Property ExpansionROM() As LinearMediaType
Get
Return Me.expansionROMField
End Get
Set
Me.expansionROMField = Value
End Set
End Property
End Class
End Namespace

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 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;
* &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;element name="PCICard" type="{}PCIType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/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;
}
}

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//
@@ -168,6 +168,14 @@ public class ObjectFactory {
return new MediaScanType();
}
/**
* Create an instance of {@link SCSIType }
*
*/
public SCSIType createSCSIType() {
return new SCSIType();
}
/**
* Create an instance of {@link ScanProcessingType }
*
@@ -208,6 +216,14 @@ public class ObjectFactory {
return new RequiredOperatingSystemsType();
}
/**
* Create an instance of {@link SecureDigitalType }
*
*/
public SecureDigitalType createSecureDigitalType() {
return new SecureDigitalType();
}
/**
* Create an instance of {@link SystemsType }
*
@@ -328,6 +344,14 @@ public class ObjectFactory {
return new BorderType();
}
/**
* Create an instance of {@link ATAType }
*
*/
public ATAType createATAType() {
return new ATAType();
}
/**
* Create an instance of {@link LanguagesType }
*
@@ -360,6 +384,14 @@ public class ObjectFactory {
return new SequenceType();
}
/**
* Create an instance of {@link EVPDType }
*
*/
public EVPDType createEVPDType() {
return new EVPDType();
}
/**
* Create an instance of {@link OpticalDiscType }
*
@@ -408,6 +440,22 @@ public class ObjectFactory {
return new ScansType();
}
/**
* Create an instance of {@link PCIType }
*
*/
public PCIType createPCIType() {
return new PCIType();
}
/**
* Create an instance of {@link USBType }
*
*/
public USBType createUSBType() {
return new USBType();
}
/**
* Create an instance of {@link UserManualType }
*

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//

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 03:41:35 AM WET
// Generated on: 2015.11.09 at 04:13:07 AM WET
//