// // 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 http://java.sun.com/xml/jaxb // Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen. // Generado el: 2018.03.18 a las 09:28:50 PM WET // 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; /** *
Clase Java para ExtentType complex type. * *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *
* <complexType name="ExtentType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <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>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExtentType", propOrder = {
"start",
"end"
})
public class ExtentType {
@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 BigInteger getStart() {
return start;
}
/**
* Define el valor de la propiedad start.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStart(BigInteger value) {
this.start = value;
}
/**
* Obtiene el valor de la propiedad end.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getEnd() {
return end;
}
/**
* Define el valor de la propiedad end.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEnd(BigInteger value) {
this.end = value;
}
}