Added missing MultiMediaCard and SecureDigital fields.

This commit is contained in:
2017-09-29 14:24:22 +01:00
parent 07d2e66e29
commit 512a82f505
80 changed files with 568 additions and 141 deletions

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2017.06.20 a las 06:21:52 AM WEST
// Generado el: 2017.09.29 a las 02:23:35 PM WEST
//
@@ -15,7 +15,7 @@ import javax.xml.bind.annotation.XmlType;
/**
* Contains SD/MMC device information
* Contains SecureDigital device information
*
* <p>Clase Java para SecureDigitalType complex type.
*
@@ -28,7 +28,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;sequence>
* &lt;element name="CID" type="{}DumpType"/>
* &lt;element name="CSD" type="{}DumpType" minOccurs="0"/>
* &lt;element name="ExtendedCSD" type="{}DumpType" minOccurs="0"/>
* &lt;element name="SCR" type="{}DumpType" minOccurs="0"/>
* &lt;element name="OCR" type="{}DumpType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -41,7 +42,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "SecureDigitalType", propOrder = {
"cid",
"csd",
"extendedCSD"
"scr",
"ocr"
})
public class SecureDigitalType {
@@ -49,8 +51,10 @@ public class SecureDigitalType {
protected DumpType cid;
@XmlElement(name = "CSD")
protected DumpType csd;
@XmlElement(name = "ExtendedCSD")
protected DumpType extendedCSD;
@XmlElement(name = "SCR")
protected DumpType scr;
@XmlElement(name = "OCR")
protected DumpType ocr;
/**
* Obtiene el valor de la propiedad cid.
@@ -101,27 +105,51 @@ public class SecureDigitalType {
}
/**
* Obtiene el valor de la propiedad extendedCSD.
* Obtiene el valor de la propiedad scr.
*
* @return
* possible object is
* {@link DumpType }
*
*/
public DumpType getExtendedCSD() {
return extendedCSD;
public DumpType getSCR() {
return scr;
}
/**
* Define el valor de la propiedad extendedCSD.
* Define el valor de la propiedad scr.
*
* @param value
* allowed object is
* {@link DumpType }
*
*/
public void setExtendedCSD(DumpType value) {
this.extendedCSD = value;
public void setSCR(DumpType value) {
this.scr = value;
}
/**
* Obtiene el valor de la propiedad ocr.
*
* @return
* possible object is
* {@link DumpType }
*
*/
public DumpType getOCR() {
return ocr;
}
/**
* Define el valor de la propiedad ocr.
*
* @param value
* allowed object is
* {@link DumpType }
*
*/
public void setOCR(DumpType value) {
this.ocr = value;
}
}