// // 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.XmlID; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p> * Java class for DSType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="DSType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}Mpeg7BaseType"> * <sequence> * <element name="Header" type="{urn:mpeg:mpeg7:schema:2004}HeaderType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attGroup ref="{urn:mpeg:mpeg7:schema:2004}mediaTimePropertyGrp"/> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DSType", propOrder = { "header" }) @XmlSeeAlso({ PlaceType.class, CreationInformationType.class, SummarySegmentType.class, MediaProfileType.class, SummarizationType.class, MediaInformationType.class, AvailabilityType.class, UsageInformationType.class, ClassificationType.class, SummarySegmentGroupType.class, RelatedMaterialType.class, MultimediaContentType.class, SegmentType.class, MediaInstanceType.class, TermDefinitionBaseType.class, AgentType.class, RelationType.class, CreationType.class, DisseminationType.class, SummaryType.class, VisualDSType.class, AudioDSType.class, SegmentDecompositionType.class }) public abstract class DSType extends Mpeg7BaseType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Header") protected List<HeaderType> header; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "mediaTimeBase") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String mediaTimeBase; @XmlAttribute(name = "mediaTimeUnit") protected String mediaTimeUnit; /** * Gets the value of the header 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 header property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getHeader().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link HeaderType } * * */ public List<HeaderType> getHeader() { if (header == null) { header = new ArrayList<HeaderType>(); } return this.header; } /** * Gets the value of the id property. * * @return possible object is {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the mediaTimeBase property. * * @return possible object is {@link String } * */ public String getMediaTimeBase() { return mediaTimeBase; } /** * Sets the value of the mediaTimeBase property. * * @param value * allowed object is {@link String } * */ public void setMediaTimeBase(String value) { this.mediaTimeBase = value; } /** * Gets the value of the mediaTimeUnit property. * * @return possible object is {@link String } * */ public String getMediaTimeUnit() { return mediaTimeUnit; } /** * Sets the value of the mediaTimeUnit property. * * @param value * allowed object is {@link String } * */ public void setMediaTimeUnit(String value) { this.mediaTimeUnit = value; } }