// // 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.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for VideoSegmentType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="VideoSegmentType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}SegmentType"> * <sequence> * <element name="MediaTime" type="{urn:mpeg:mpeg7:schema:2004}MediaTimeType"/> * <choice maxOccurs="unbounded" minOccurs="0"> * <element name="VisualDescriptor" type="{urn:mpeg:mpeg7:schema:2004}VisualDType"/> * <element name="VisualDescriptionScheme" type="{urn:mpeg:mpeg7:schema:2004}VisualDSType"/> * <element name="VisualTimeSeriesDescriptor" type="{urn:mpeg:mpeg7:schema:2004}VisualTimeSeriesType"/> * </choice> * <choice maxOccurs="unbounded" minOccurs="0"> * <element name="TemporalDecomposition" type="{urn:mpeg:mpeg7:schema:2004}VideoSegmentTemporalDecompositionType"/> * <element name="SpatioTemporalDecomposition" type="{urn:mpeg:mpeg7:schema:2004}VideoSegmentSpatioTemporalDecompositionType"/> * </choice> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSegmentType", propOrder = { "mediaTime", "visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor", "temporalDecompositionOrSpatioTemporalDecomposition" }) public class VideoSegmentType extends SegmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "MediaTime", required = true) protected MediaTimeType mediaTime; @XmlElements({ @XmlElement(name = "VisualDescriptor", type = VisualDType.class), @XmlElement(name = "VisualDescriptionScheme", type = VisualDSType.class), @XmlElement(name = "VisualTimeSeriesDescriptor", type = VisualTimeSeriesType.class) }) protected List<Serializable> visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor; @XmlElements({ @XmlElement(name = "TemporalDecomposition", type = VideoSegmentTemporalDecompositionType.class), @XmlElement(name = "SpatioTemporalDecomposition", type = VideoSegmentSpatioTemporalDecompositionType.class) }) protected List<SegmentDecompositionType> temporalDecompositionOrSpatioTemporalDecomposition; /** * Gets the value of the mediaTime property. * * @return possible object is {@link MediaTimeType } * */ public MediaTimeType getMediaTime() { return mediaTime; } /** * Sets the value of the mediaTime property. * * @param value * allowed object is {@link MediaTimeType } * */ public void setMediaTime(MediaTimeType value) { this.mediaTime = value; } /** * Gets the value of the * visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor * 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 * visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor * property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getVisualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link VisualDType } {@link VisualDSType } {@link VisualTimeSeriesType } * * */ public List<Serializable> getVisualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor() { if (visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor == null) { visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor = new ArrayList<Serializable>(); } return this.visualDescriptorOrVisualDescriptionSchemeOrVisualTimeSeriesDescriptor; } /** * Gets the value of the temporalDecompositionOrSpatioTemporalDecomposition * 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 * temporalDecompositionOrSpatioTemporalDecomposition property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getTemporalDecompositionOrSpatioTemporalDecomposition().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link VideoSegmentTemporalDecompositionType } * {@link VideoSegmentSpatioTemporalDecompositionType } * * */ public List<SegmentDecompositionType> getTemporalDecompositionOrSpatioTemporalDecomposition() { if (temporalDecompositionOrSpatioTemporalDecomposition == null) { temporalDecompositionOrSpatioTemporalDecomposition = new ArrayList<SegmentDecompositionType>(); } return this.temporalDecompositionOrSpatioTemporalDecomposition; } }