Corrected size field as long integer

This commit is contained in:
2015-11-10 06:09:41 +00:00
parent 51c097c04e
commit 148cb6181f
73 changed files with 169 additions and 258 deletions

View File

@@ -2,12 +2,14 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.11.09 at 05:42:56 AM WET
// Generated on: 2015.11.10 at 06:09:13 AM WET
//
package generated;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
@@ -24,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="FileSystem" type="{}FileSystemType"/>
* &lt;element name="FileSystem" type="{}FileSystemType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -40,30 +42,35 @@ import javax.xml.bind.annotation.XmlType;
public class FileSystemsType {
@XmlElement(name = "FileSystem", required = true)
protected FileSystemType fileSystem;
protected List<FileSystemType> fileSystem;
/**
* Gets the value of the fileSystem property.
*
* @return
* possible object is
* {@link FileSystemType }
*
*/
public FileSystemType getFileSystem() {
return fileSystem;
}
/**
* Sets the value of the fileSystem property.
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the fileSystem property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getFileSystem().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link FileSystemType }
*
*
* @param value
* allowed object is
* {@link FileSystemType }
*
*/
public void setFileSystem(FileSystemType value) {
this.fileSystem = value;
public List<FileSystemType> getFileSystem() {
if (fileSystem == null) {
fileSystem = new ArrayList<FileSystemType>();
}
return this.fileSystem;
}
}