Corrected size field as long integer
This commit is contained in:
@@ -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;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
@@ -51,8 +51,8 @@ public class AudioBlockType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
protected String size;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "AccoustID", required = true)
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
@@ -87,24 +87,16 @@ public class AudioBlockType {
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user