// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.07.24 at 11:42:28 PM CEST // package eu.prestoprime.model.ext.qa; import java.io.Serializable; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for AudioLLDVectorType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="AudioLLDVectorType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}AudioDType"> * <choice> * <element name="Vector" type="{urn:mpeg:mpeg7:schema:2004}floatVector"/> * <element name="SeriesOfVector" maxOccurs="unbounded"> * <complexType> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}SeriesOfVectorType"> * <attribute name="hopSize" type="{urn:mpeg:mpeg7:schema:2004}mediaDurationType" default="PT10N1000F" /> * </extension> * </complexContent> * </complexType> * </element> * </choice> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioLLDVectorType", propOrder = { "vector", "seriesOfVector" }) @XmlSeeAlso({ AudioSpectrumBasisType.class, AudioSpectrumProjectionType.class, AudioSpectrumFlatnessType.class, RelativeDelayType.class, BandwidthType.class, BackgroundNoiseLevelType.class, BalanceType.class, CrossChannelCorrelationType.class, DcOffsetType.class, AudioSpectrumEnvelopeType.class }) public abstract class AudioLLDVectorType extends AudioDType implements Serializable { private final static long serialVersionUID = 1L; @XmlList @XmlElement(name = "Vector", type = Float.class) protected List<Float> vector; @XmlElement(name = "SeriesOfVector") protected List<AudioLLDVectorType.SeriesOfVector> seriesOfVector; /** * Gets the value of the vector 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 vector property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getVector().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link Float } * * */ public List<Float> getVector() { if (vector == null) { vector = new ArrayList<Float>(); } return this.vector; } /** * Gets the value of the seriesOfVector 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 seriesOfVector property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getSeriesOfVector().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AudioLLDVectorType.SeriesOfVector } * * */ public List<AudioLLDVectorType.SeriesOfVector> getSeriesOfVector() { if (seriesOfVector == null) { seriesOfVector = new ArrayList<AudioLLDVectorType.SeriesOfVector>(); } return this.seriesOfVector; } /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained * within this class. * * <pre> * <complexType> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}SeriesOfVectorType"> * <attribute name="hopSize" type="{urn:mpeg:mpeg7:schema:2004}mediaDurationType" default="PT10N1000F" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class SeriesOfVector extends SeriesOfVectorType implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "hopSize") protected String hopSize; /** * Gets the value of the hopSize property. * * @return possible object is {@link String } * */ public String getHopSize() { if (hopSize == null) { return "PT10N1000F"; } else { return hopSize; } } /** * Sets the value of the hopSize property. * * @param value * allowed object is {@link String } * */ public void setHopSize(String value) { this.hopSize = value; } } }