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,7 +2,7 @@
// 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
//
@@ -27,7 +27,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Head" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
@@ -61,8 +61,8 @@ public class BlockTrackType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size", required = true)
protected String size;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Head")
protected long head;
@XmlElement(name = "Cylinder")
@@ -107,24 +107,16 @@ public class BlockTrackType {
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSize() {
public long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSize(String value) {
public void setSize(long value) {
this.size = value;
}