Update size of fields.

This commit is contained in:
2019-04-23 00:10:05 +01:00
parent 47f3458897
commit 9e6c00e177
85 changed files with 3189 additions and 2731 deletions

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
package generated;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
@@ -27,12 +29,12 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Sequence" type="{}TrackSequenceType"/&gt;
* &lt;element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="TrackType"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
@@ -49,7 +51,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="SubChannel" type="{}SubChannelType" minOccurs="0"/&gt;
@@ -82,22 +84,26 @@ public class TrackType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Sequence", required = true)
protected TrackSequenceType sequence;
@XmlElement(name = "StartMSF")
protected String startMSF;
@XmlElement(name = "EndMSF")
protected String endMSF;
@XmlElement(name = "StartSector")
protected long startSector;
@XmlElement(name = "EndSector")
protected long endSector;
@XmlElement(name = "StartSector", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger startSector;
@XmlElement(name = "EndSector", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger endSector;
@XmlElement(name = "TrackType", required = true)
protected String trackType;
@XmlElement(name = "BytesPerSector")
protected int bytesPerSector;
@XmlSchemaType(name = "unsignedInt")
protected long bytesPerSector;
@XmlElement(name = "AccoustID")
protected String accoustID;
@XmlElement(name = "Checksums", required = true)
@@ -134,16 +140,24 @@ public class TrackType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -222,32 +236,48 @@ public class TrackType {
/**
* Obtiene el valor de la propiedad startSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getStartSector() {
public BigInteger getStartSector() {
return startSector;
}
/**
* Define el valor de la propiedad startSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartSector(long value) {
public void setStartSector(BigInteger value) {
this.startSector = value;
}
/**
* Obtiene el valor de la propiedad endSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getEndSector() {
public BigInteger getEndSector() {
return endSector;
}
/**
* Define el valor de la propiedad endSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEndSector(long value) {
public void setEndSector(BigInteger value) {
this.endSector = value;
}
@@ -279,7 +309,7 @@ public class TrackType {
* Obtiene el valor de la propiedad bytesPerSector.
*
*/
public int getBytesPerSector() {
public long getBytesPerSector() {
return bytesPerSector;
}
@@ -287,7 +317,7 @@ public class TrackType {
* Define el valor de la propiedad bytesPerSector.
*
*/
public void setBytesPerSector(int value) {
public void setBytesPerSector(long value) {
this.bytesPerSector = value;
}