// // 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.XmlElements; import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for SpatioTemporalLocatorType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="SpatioTemporalLocatorType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CoordRef" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <attribute name="spatialRef" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </element> * <choice maxOccurs="unbounded"> * <element name="FigureTrajectory" type="{urn:mpeg:mpeg7:schema:2004}FigureTrajectoryType"/> * <element name="ParameterTrajectory" type="{urn:mpeg:mpeg7:schema:2004}ParameterTrajectoryType"/> * <element name="MediaTime" type="{urn:mpeg:mpeg7:schema:2004}MediaTimeType"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SpatioTemporalLocatorType", propOrder = { "coordRef", "figureTrajectoryOrParameterTrajectoryOrMediaTime" }) public class SpatioTemporalLocatorType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "CoordRef") protected SpatioTemporalLocatorType.CoordRef coordRef; @XmlElements({ @XmlElement(name = "FigureTrajectory", type = FigureTrajectoryType.class), @XmlElement(name = "ParameterTrajectory", type = ParameterTrajectoryType.class), @XmlElement(name = "MediaTime", type = MediaTimeType.class) }) protected List<Serializable> figureTrajectoryOrParameterTrajectoryOrMediaTime; /** * Gets the value of the coordRef property. * * @return possible object is {@link SpatioTemporalLocatorType.CoordRef } * */ public SpatioTemporalLocatorType.CoordRef getCoordRef() { return coordRef; } /** * Sets the value of the coordRef property. * * @param value * allowed object is {@link SpatioTemporalLocatorType.CoordRef } * */ public void setCoordRef(SpatioTemporalLocatorType.CoordRef value) { this.coordRef = value; } /** * Gets the value of the figureTrajectoryOrParameterTrajectoryOrMediaTime * 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 * figureTrajectoryOrParameterTrajectoryOrMediaTime property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getFigureTrajectoryOrParameterTrajectoryOrMediaTime().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FigureTrajectoryType } {@link ParameterTrajectoryType } * {@link MediaTimeType } * * */ public List<Serializable> getFigureTrajectoryOrParameterTrajectoryOrMediaTime() { if (figureTrajectoryOrParameterTrajectoryOrMediaTime == null) { figureTrajectoryOrParameterTrajectoryOrMediaTime = new ArrayList<Serializable>(); } return this.figureTrajectoryOrParameterTrajectoryOrMediaTime; } /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained * within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <attribute name="spatialRef" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class CoordRef implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "ref", required = true) @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object ref; @XmlAttribute(name = "spatialRef", required = true) protected boolean spatialRef; /** * Gets the value of the ref property. * * @return possible object is {@link Object } * */ public Object getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is {@link Object } * */ public void setRef(Object value) { this.ref = value; } /** * Gets the value of the spatialRef property. * */ public boolean isSpatialRef() { return spatialRef; } /** * Sets the value of the spatialRef property. * */ public void setSpatialRef(boolean value) { this.spatialRef = value; } } }