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