Added audio media

This commit is contained in:
2015-11-09 05:10:02 +00:00
parent c55b168ffd
commit 9d5cdb2539
73 changed files with 1458 additions and 72 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.09 at 04:57:50 AM WET
// Generated on: 2015.11.09 at 05:09:39 AM WET
//
@@ -54,6 +54,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Dimensions" type="{}DimensionsType"/>
* &lt;element name="FileSystemInformation" type="{}FileSystemInformationType" minOccurs="0"/>
* &lt;element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -89,7 +90,8 @@ import javax.xml.bind.annotation.XmlType;
"track",
"copyProtection",
"dimensions",
"fileSystemInformation"
"fileSystemInformation",
"dumpHardwareArray"
})
public class BlockMediaType {
@@ -145,6 +147,8 @@ public class BlockMediaType {
protected DimensionsType dimensions;
@XmlElement(name = "FileSystemInformation")
protected FileSystemInformationType fileSystemInformation;
@XmlElement(name = "DumpHardwareArray")
protected DumpHardwareArrayType dumpHardwareArray;
/**
* Gets the value of the image property.
@@ -743,4 +747,28 @@ public class BlockMediaType {
this.fileSystemInformation = value;
}
/**
* Gets the value of the dumpHardwareArray property.
*
* @return
* possible object is
* {@link DumpHardwareArrayType }
*
*/
public DumpHardwareArrayType getDumpHardwareArray() {
return dumpHardwareArray;
}
/**
* Sets the value of the dumpHardwareArray property.
*
* @param value
* allowed object is
* {@link DumpHardwareArrayType }
*
*/
public void setDumpHardwareArray(DumpHardwareArrayType value) {
this.dumpHardwareArray = value;
}
}