// // 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for ParameterTrajectoryType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ParameterTrajectoryType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="MediaTime" type="{urn:mpeg:mpeg7:schema:2004}MediaTimeType"/> * <element name="InitialRegion" type="{urn:mpeg:mpeg7:schema:2004}RegionLocatorType"/> * <element name="Params" type="{urn:mpeg:mpeg7:schema:2004}TemporalInterpolationType" minOccurs="0"/> * <element name="Depth" type="{urn:mpeg:mpeg7:schema:2004}TemporalInterpolationType" minOccurs="0"/> * </sequence> * <attribute name="motionModel" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="still"/> * <enumeration value="translation"/> * <enumeration value="rotationAndScaling"/> * <enumeration value="affine"/> * <enumeration value="perspective"/> * <enumeration value="parabolic"/> * </restriction> * </simpleType> * </attribute> * <attribute name="ellipseFlag" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ParameterTrajectoryType", propOrder = { "mediaTime", "initialRegion", "params", "depth" }) public class ParameterTrajectoryType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "MediaTime", required = true) protected MediaTimeType mediaTime; @XmlElement(name = "InitialRegion", required = true) protected RegionLocatorType initialRegion; @XmlElement(name = "Params") protected TemporalInterpolationType params; @XmlElement(name = "Depth") protected TemporalInterpolationType depth; @XmlAttribute(name = "motionModel", required = true) protected String motionModel; @XmlAttribute(name = "ellipseFlag") protected Boolean ellipseFlag; /** * 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 initialRegion property. * * @return possible object is {@link RegionLocatorType } * */ public RegionLocatorType getInitialRegion() { return initialRegion; } /** * Sets the value of the initialRegion property. * * @param value * allowed object is {@link RegionLocatorType } * */ public void setInitialRegion(RegionLocatorType value) { this.initialRegion = value; } /** * Gets the value of the params property. * * @return possible object is {@link TemporalInterpolationType } * */ public TemporalInterpolationType getParams() { return params; } /** * Sets the value of the params property. * * @param value * allowed object is {@link TemporalInterpolationType } * */ public void setParams(TemporalInterpolationType value) { this.params = value; } /** * Gets the value of the depth property. * * @return possible object is {@link TemporalInterpolationType } * */ public TemporalInterpolationType getDepth() { return depth; } /** * Sets the value of the depth property. * * @param value * allowed object is {@link TemporalInterpolationType } * */ public void setDepth(TemporalInterpolationType value) { this.depth = value; } /** * Gets the value of the motionModel property. * * @return possible object is {@link String } * */ public String getMotionModel() { return motionModel; } /** * Sets the value of the motionModel property. * * @param value * allowed object is {@link String } * */ public void setMotionModel(String value) { this.motionModel = value; } /** * Gets the value of the ellipseFlag property. * * @return possible object is {@link Boolean } * */ public boolean isEllipseFlag() { if (ellipseFlag == null) { return false; } else { return ellipseFlag; } } /** * Sets the value of the ellipseFlag property. * * @param value * allowed object is {@link Boolean } * */ public void setEllipseFlag(Boolean value) { this.ellipseFlag = value; } }