001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2010.09.16 at 02:31:28 PM GMT 
006    //
007    
008    
009    package org.deegree.portal.cataloguemanager.model;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlElement;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlType;
016    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;sequence>
028     *         &lt;element ref="{http://www.isotc211.org/2005/gmd}description"/>
029     *         &lt;element ref="{http://www.isotc211.org/2005/gmd}geographicElement"/>
030     *         &lt;element ref="{http://www.isotc211.org/2005/gmd}temporalElement"/>
031     *       &lt;/sequence>
032     *     &lt;/restriction>
033     *   &lt;/complexContent>
034     * &lt;/complexType>
035     * </pre>
036     * 
037     * 
038     */
039    @XmlAccessorType(XmlAccessType.FIELD)
040    @XmlType(name = "", propOrder = {
041        "description",
042        "geographicElement",
043        "temporalElement"
044    })
045    @XmlRootElement(name = "EX_Extent")
046    public class EXExtent {
047    
048        @XmlElement(required = true)
049        protected Description description;
050        @XmlElement(required = true)
051        protected GeographicElement geographicElement;
052        @XmlElement(required = true)
053        protected TemporalElement temporalElement;
054    
055        /**
056         * Gets the value of the description property.
057         * 
058         * @return
059         *     possible object is
060         *     {@link Description }
061         *     
062         */
063        public Description getDescription() {
064            return description;
065        }
066    
067        /**
068         * Sets the value of the description property.
069         * 
070         * @param value
071         *     allowed object is
072         *     {@link Description }
073         *     
074         */
075        public void setDescription(Description value) {
076            this.description = value;
077        }
078    
079        /**
080         * Gets the value of the geographicElement property.
081         * 
082         * @return
083         *     possible object is
084         *     {@link GeographicElement }
085         *     
086         */
087        public GeographicElement getGeographicElement() {
088            return geographicElement;
089        }
090    
091        /**
092         * Sets the value of the geographicElement property.
093         * 
094         * @param value
095         *     allowed object is
096         *     {@link GeographicElement }
097         *     
098         */
099        public void setGeographicElement(GeographicElement value) {
100            this.geographicElement = value;
101        }
102    
103        /**
104         * Gets the value of the temporalElement property.
105         * 
106         * @return
107         *     possible object is
108         *     {@link TemporalElement }
109         *     
110         */
111        public TemporalElement getTemporalElement() {
112            return temporalElement;
113        }
114    
115        /**
116         * Sets the value of the temporalElement property.
117         * 
118         * @param value
119         *     allowed object is
120         *     {@link TemporalElement }
121         *     
122         */
123        public void setTemporalElement(TemporalElement value) {
124            this.temporalElement = value;
125        }
126    
127    }