// // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for TitleMediaType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="TitleMediaType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TitleImage" type="{urn:mpeg:mpeg7:schema:2004}ImageLocatorType" minOccurs="0"/> * <element name="TitleVideo" type="{urn:mpeg:mpeg7:schema:2004}TemporalSegmentLocatorType" minOccurs="0"/> * <element name="TitleAudio" type="{urn:mpeg:mpeg7:schema:2004}TemporalSegmentLocatorType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TitleMediaType", propOrder = { "titleImage", "titleVideo", "titleAudio" }) public class TitleMediaType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "TitleImage") protected ImageLocatorType titleImage; @XmlElement(name = "TitleVideo") protected TemporalSegmentLocatorType titleVideo; @XmlElement(name = "TitleAudio") protected TemporalSegmentLocatorType titleAudio; /** * Gets the value of the titleImage property. * * @return possible object is {@link ImageLocatorType } * */ public ImageLocatorType getTitleImage() { return titleImage; } /** * Sets the value of the titleImage property. * * @param value * allowed object is {@link ImageLocatorType } * */ public void setTitleImage(ImageLocatorType value) { this.titleImage = value; } /** * Gets the value of the titleVideo property. * * @return possible object is {@link TemporalSegmentLocatorType } * */ public TemporalSegmentLocatorType getTitleVideo() { return titleVideo; } /** * Sets the value of the titleVideo property. * * @param value * allowed object is {@link TemporalSegmentLocatorType } * */ public void setTitleVideo(TemporalSegmentLocatorType value) { this.titleVideo = value; } /** * Gets the value of the titleAudio property. * * @return possible object is {@link TemporalSegmentLocatorType } * */ public TemporalSegmentLocatorType getTitleAudio() { return titleAudio; } /** * Sets the value of the titleAudio property. * * @param value * allowed object is {@link TemporalSegmentLocatorType } * */ public void setTitleAudio(TemporalSegmentLocatorType value) { this.titleAudio = value; } }