// // 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 StillRegionType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="StillRegionType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}SegmentType"> * <sequence> * <element name="SpatialLocator" type="{urn:mpeg:mpeg7:schema:2004}RegionLocatorType" minOccurs="0"/> * <element name="MediaRelIncrTimePoint" type="{urn:mpeg:mpeg7:schema:2004}MediaRelIncrTimePointType" minOccurs="0"/> * <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="GridLayoutDescriptors" type="{urn:mpeg:mpeg7:schema:2004}GridLayoutType"/> * </choice> * <element name="SpatialDecomposition" type="{urn:mpeg:mpeg7:schema:2004}StillRegionSpatialDecompositionType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StillRegionType", propOrder = { "spatialLocator", "mediaRelIncrTimePoint", "visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors", "spatialDecomposition" }) @XmlSeeAlso({ ImageTextType.class }) public class StillRegionType extends SegmentType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "SpatialLocator") protected RegionLocatorType spatialLocator; @XmlElement(name = "MediaRelIncrTimePoint") protected MediaRelIncrTimePointType mediaRelIncrTimePoint; @XmlElements({ @XmlElement(name = "VisualDescriptor", type = VisualDType.class), @XmlElement(name = "VisualDescriptionScheme", type = VisualDSType.class), @XmlElement(name = "GridLayoutDescriptors", type = GridLayoutType.class) }) protected List<Serializable> visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors; @XmlElement(name = "SpatialDecomposition") protected List<StillRegionSpatialDecompositionType> spatialDecomposition; /** * Gets the value of the spatialLocator property. * * @return possible object is {@link RegionLocatorType } * */ public RegionLocatorType getSpatialLocator() { return spatialLocator; } /** * Sets the value of the spatialLocator property. * * @param value * allowed object is {@link RegionLocatorType } * */ public void setSpatialLocator(RegionLocatorType value) { this.spatialLocator = value; } /** * Gets the value of the mediaRelIncrTimePoint property. * * @return possible object is {@link MediaRelIncrTimePointType } * */ public MediaRelIncrTimePointType getMediaRelIncrTimePoint() { return mediaRelIncrTimePoint; } /** * Sets the value of the mediaRelIncrTimePoint property. * * @param value * allowed object is {@link MediaRelIncrTimePointType } * */ public void setMediaRelIncrTimePoint(MediaRelIncrTimePointType value) { this.mediaRelIncrTimePoint = value; } /** * Gets the value of the * visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors * 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 * visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors * property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getVisualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link VisualDType } {@link VisualDSType } {@link GridLayoutType } * * */ public List<Serializable> getVisualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors() { if (visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors == null) { visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors = new ArrayList<Serializable>(); } return this.visualDescriptorOrVisualDescriptionSchemeOrGridLayoutDescriptors; } /** * Gets the value of the spatialDecomposition 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 spatialDecomposition property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getSpatialDecomposition().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link StillRegionSpatialDecompositionType } * * */ public List<StillRegionSpatialDecompositionType> getSpatialDecomposition() { if (spatialDecomposition == null) { spatialDecomposition = new ArrayList<StillRegionSpatialDecompositionType>(); } return this.spatialDecomposition; } }