Added some missing CD, DVD, BD and SCSI fields

This commit is contained in:
2016-01-16 07:49:57 +00:00
parent 6e06967287
commit c1b40a786b
73 changed files with 837 additions and 69 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.12.31 at 05:27:48 PM WET
// Generated on: 2016.01.16 at 07:48:01 AM WET
//
@@ -47,6 +47,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="SecureDigital" type="{}SecureDigitalType" minOccurs="0"/>
* &lt;element name="SCSI" type="{}SCSIType" minOccurs="0"/>
* &lt;element name="USB" type="{}USBType" minOccurs="0"/>
* &lt;element name="MAM" type="{}DumpType" minOccurs="0"/>
* &lt;element name="Heads" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* &lt;element name="Cylinders" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* &lt;element name="SectorsPerTrack" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
@@ -86,6 +87,7 @@ import javax.xml.bind.annotation.XmlType;
"secureDigital",
"scsi",
"usb",
"mam",
"heads",
"cylinders",
"sectorsPerTrack",
@@ -137,6 +139,8 @@ public class BlockMediaType {
protected SCSIType scsi;
@XmlElement(name = "USB")
protected USBType usb;
@XmlElement(name = "MAM")
protected DumpType mam;
@XmlElement(name = "Heads")
protected Long heads;
@XmlElement(name = "Cylinders")
@@ -582,6 +586,30 @@ public class BlockMediaType {
this.usb = value;
}
/**
* Gets the value of the mam property.
*
* @return
* possible object is
* {@link DumpType }
*
*/
public DumpType getMAM() {
return mam;
}
/**
* Sets the value of the mam property.
*
* @param value
* allowed object is
* {@link DumpType }
*
*/
public void setMAM(DumpType value) {
this.mam = value;
}
/**
* Gets the value of the heads property.
*