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,7 +2,7 @@
// 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
//
@@ -11,6 +11,7 @@ package generated;
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;
@@ -28,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Scan" type="{}ScanType" minOccurs="0"/&gt;
* &lt;/sequence&gt;
@@ -51,7 +52,8 @@ public class UserManualType {
@XmlElement(name = "Language")
protected LanguagesType language;
@XmlElement(name = "Pages")
protected int pages;
@XmlSchemaType(name = "unsignedInt")
protected long pages;
@XmlElement(name = "PageSize")
protected String pageSize;
@XmlElement(name = "Scan")
@@ -85,7 +87,7 @@ public class UserManualType {
* Obtiene el valor de la propiedad pages.
*
*/
public int getPages() {
public long getPages() {
return pages;
}
@@ -93,7 +95,7 @@ public class UserManualType {
* Define el valor de la propiedad pages.
*
*/
public void setPages(int value) {
public void setPages(long value) {
this.pages = value;
}