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="Sequence" type="{}TrackSequenceType"/>
* &lt;element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
@@ -82,8 +82,8 @@ public class TrackType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size", required = true)
protected String size;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Sequence", required = true)
protected TrackSequenceType sequence;
@XmlElement(name = "StartMSF")
@@ -134,24 +134,16 @@ public class TrackType {
/**
* 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;
}