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
//
@@ -25,7 +25,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CaseScan" type="{}CaseScanType" minOccurs="0"/>
* &lt;element name="DiscScan" type="{}DiscScanType" minOccurs="0"/>
* &lt;element name="Scan" type="{}MediaScanType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -37,14 +37,14 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ScansType", propOrder = {
"caseScan",
"discScan"
"scan"
})
public class ScansType {
@XmlElement(name = "CaseScan")
protected CaseScanType caseScan;
@XmlElement(name = "DiscScan")
protected DiscScanType discScan;
@XmlElement(name = "Scan")
protected MediaScanType scan;
/**
* Gets the value of the caseScan property.
@@ -71,27 +71,27 @@ public class ScansType {
}
/**
* Gets the value of the discScan property.
* Gets the value of the scan property.
*
* @return
* possible object is
* {@link DiscScanType }
* {@link MediaScanType }
*
*/
public DiscScanType getDiscScan() {
return discScan;
public MediaScanType getScan() {
return scan;
}
/**
* Sets the value of the discScan property.
* Sets the value of the scan property.
*
* @param value
* allowed object is
* {@link DiscScanType }
* {@link MediaScanType }
*
*/
public void setDiscScan(DiscScanType value) {
this.discScan = value;
public void setScan(MediaScanType value) {
this.scan = value;
}
}