// // 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 MovingRegionFeatureType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="MovingRegionFeatureType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}VideoSegmentFeatureType"> * <sequence> * <element name="ShapeVariation" type="{urn:mpeg:mpeg7:schema:2004}ShapeVariationType" minOccurs="0"/> * <choice minOccurs="0"> * <element name="ParametricMotion" type="{urn:mpeg:mpeg7:schema:2004}ParametricMotionType"/> * <element name="MotionTrajectory" type="{urn:mpeg:mpeg7:schema:2004}MotionTrajectoryType"/> * </choice> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MovingRegionFeatureType", propOrder = { "shapeVariation", "parametricMotion", "motionTrajectory" }) public class MovingRegionFeatureType extends VideoSegmentFeatureType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "ShapeVariation") protected ShapeVariationType shapeVariation; @XmlElement(name = "ParametricMotion") protected ParametricMotionType parametricMotion; @XmlElement(name = "MotionTrajectory") protected MotionTrajectoryType motionTrajectory; /** * Gets the value of the shapeVariation property. * * @return possible object is {@link ShapeVariationType } * */ public ShapeVariationType getShapeVariation() { return shapeVariation; } /** * Sets the value of the shapeVariation property. * * @param value * allowed object is {@link ShapeVariationType } * */ public void setShapeVariation(ShapeVariationType value) { this.shapeVariation = value; } /** * Gets the value of the parametricMotion property. * * @return possible object is {@link ParametricMotionType } * */ public ParametricMotionType getParametricMotion() { return parametricMotion; } /** * Sets the value of the parametricMotion property. * * @param value * allowed object is {@link ParametricMotionType } * */ public void setParametricMotion(ParametricMotionType value) { this.parametricMotion = value; } /** * Gets the value of the motionTrajectory property. * * @return possible object is {@link MotionTrajectoryType } * */ public MotionTrajectoryType getMotionTrajectory() { return motionTrajectory; } /** * Sets the value of the motionTrajectory property. * * @param value * allowed object is {@link MotionTrajectoryType } * */ public void setMotionTrajectory(MotionTrajectoryType value) { this.motionTrajectory = value; } }