Added missing MultiMediaCard and SecureDigital fields.
This commit is contained in:
@@ -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;
|
||||
* <sequence>
|
||||
* <element name="CID" type="{}DumpType"/>
|
||||
* <element name="CSD" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="ExtendedCSD" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="SCR" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="OCR" type="{}DumpType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user