Update size of fields.
This commit is contained in:
@@ -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
|
||||
//
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,15 +30,15 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
|
||||
* <attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -55,15 +56,16 @@ public class AudioTracksType {
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected int trackNumber;
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
@XmlAttribute(name = "Channels", required = true)
|
||||
protected int channels;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long channels;
|
||||
@XmlAttribute(name = "SampleRate", required = true)
|
||||
protected int sampleRate;
|
||||
protected double sampleRate;
|
||||
@XmlAttribute(name = "MeanBitrate", required = true)
|
||||
protected long meanBitrate;
|
||||
|
||||
@@ -95,7 +97,7 @@ public class AudioTracksType {
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public int getTrackNumber() {
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
@@ -103,7 +105,7 @@ public class AudioTracksType {
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(int value) {
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
@@ -159,7 +161,7 @@ public class AudioTracksType {
|
||||
* Obtiene el valor de la propiedad channels.
|
||||
*
|
||||
*/
|
||||
public int getChannels() {
|
||||
public long getChannels() {
|
||||
return channels;
|
||||
}
|
||||
|
||||
@@ -167,7 +169,7 @@ public class AudioTracksType {
|
||||
* Define el valor de la propiedad channels.
|
||||
*
|
||||
*/
|
||||
public void setChannels(int value) {
|
||||
public void setChannels(long value) {
|
||||
this.channels = value;
|
||||
}
|
||||
|
||||
@@ -175,7 +177,7 @@ public class AudioTracksType {
|
||||
* Obtiene el valor de la propiedad sampleRate.
|
||||
*
|
||||
*/
|
||||
public int getSampleRate() {
|
||||
public double getSampleRate() {
|
||||
return sampleRate;
|
||||
}
|
||||
|
||||
@@ -183,7 +185,7 @@ public class AudioTracksType {
|
||||
* Define el valor de la propiedad sampleRate.
|
||||
*
|
||||
*/
|
||||
public void setSampleRate(int value) {
|
||||
public void setSampleRate(double value) {
|
||||
this.sampleRate = value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user