Corrected extents, should be unsigned long.
This commit is contained in:
@@ -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.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.08 a las 09:53:11 PM WEST
|
||||
// Generado el: 2017.06.08 a las 09:56:12 PM WEST
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
@@ -24,8 +26,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -41,40 +43,58 @@ import javax.xml.bind.annotation.XmlType;
|
||||
})
|
||||
public class ExtentType {
|
||||
|
||||
@XmlElement(name = "Start")
|
||||
protected int start;
|
||||
@XmlElement(name = "End")
|
||||
protected int end;
|
||||
@XmlElement(name = "Start", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger start;
|
||||
@XmlElement(name = "End", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger end;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad start.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public int getStart() {
|
||||
public BigInteger getStart() {
|
||||
return start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad start.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStart(int value) {
|
||||
public void setStart(BigInteger value) {
|
||||
this.start = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad end.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public int getEnd() {
|
||||
public BigInteger getEnd() {
|
||||
return end;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad end.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEnd(int value) {
|
||||
public void setEnd(BigInteger value) {
|
||||
this.end = value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user