Coverage Report - org.georss.georss._10.Where
 
Classes in this File Line Coverage Branch Coverage Complexity
Where
21% 
N/A 
0
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 
 3  
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 4  
 // Any modifications to this file will be lost upon recompilation of the source schema. 
 5  
 // Generated on: 2008.06.11 at 12:15:46 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package org.georss.georss._10;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlAttribute;
 14  
 import javax.xml.bind.annotation.XmlElement;
 15  
 import javax.xml.bind.annotation.XmlSchemaType;
 16  
 import javax.xml.bind.annotation.XmlType;
 17  
 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
 18  
 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 19  
 import net.opengis.gml.EnvelopeType;
 20  
 import net.opengis.gml.LineStringType;
 21  
 import net.opengis.gml.PointType;
 22  
 import net.opengis.gml.PolygonType;
 23  
 
 24  
 
 25  
 /**
 26  
  * <p>Java class for where complex type.
 27  
  * 
 28  
  * <p>The following schema fragment specifies the expected content contained within this class.
 29  
  * 
 30  
  * <pre>
 31  
  * &lt;complexType name="where">
 32  
  *   &lt;complexContent>
 33  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 34  
  *       &lt;choice>
 35  
  *         &lt;element ref="{http://www.opengis.net/gml}Point"/>
 36  
  *         &lt;element ref="{http://www.opengis.net/gml}LineString"/>
 37  
  *         &lt;element ref="{http://www.opengis.net/gml}Polygon"/>
 38  
  *         &lt;element ref="{http://www.opengis.net/gml}Envelope"/>
 39  
  *       &lt;/choice>
 40  
  *       &lt;attGroup ref="{http://www.georss.org/georss/10}whereAttrGroup"/>
 41  
  *     &lt;/restriction>
 42  
  *   &lt;/complexContent>
 43  
  * &lt;/complexType>
 44  
  * </pre>
 45  
  * 
 46  
  * 
 47  
  */
 48  
 @XmlAccessorType(XmlAccessType.FIELD)
 49  
 @XmlType(name = "where", propOrder = {
 50  
     "point",
 51  
     "lineString",
 52  
     "polygon",
 53  
     "envelope"
 54  
 })
 55  6
 public class Where {
 56  
 
 57  
     @XmlElement(name = "Point", namespace = "http://www.opengis.net/gml")
 58  
     protected PointType point;
 59  
     @XmlElement(name = "LineString", namespace = "http://www.opengis.net/gml")
 60  
     protected LineStringType lineString;
 61  
     @XmlElement(name = "Polygon", namespace = "http://www.opengis.net/gml")
 62  
     protected PolygonType polygon;
 63  
     @XmlElement(name = "Envelope", namespace = "http://www.opengis.net/gml")
 64  
     protected EnvelopeType envelope;
 65  
     @XmlAttribute
 66  
     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
 67  
     @XmlSchemaType(name = "NCName")
 68  
     protected String featuretypetag;
 69  
     @XmlAttribute
 70  
     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
 71  
     @XmlSchemaType(name = "NCName")
 72  
     protected String relationshiptag;
 73  
     @XmlAttribute
 74  
     protected Double elev;
 75  
     @XmlAttribute
 76  
     protected Double floor;
 77  
     @XmlAttribute
 78  
     protected Double radius;
 79  
 
 80  
     /**
 81  
      * Gets the value of the point property.
 82  
      * 
 83  
      * @return
 84  
      *     possible object is
 85  
      *     {@link PointType }
 86  
      *     
 87  
      */
 88  
     public PointType getPoint() {
 89  6
         return point;
 90  
     }
 91  
 
 92  
     /**
 93  
      * Sets the value of the point property.
 94  
      * 
 95  
      * @param value
 96  
      *     allowed object is
 97  
      *     {@link PointType }
 98  
      *     
 99  
      */
 100  
     public void setPoint(PointType value) {
 101  3
         this.point = value;
 102  3
     }
 103  
 
 104  
     /**
 105  
      * Gets the value of the lineString property.
 106  
      * 
 107  
      * @return
 108  
      *     possible object is
 109  
      *     {@link LineStringType }
 110  
      *     
 111  
      */
 112  
     public LineStringType getLineString() {
 113  0
         return lineString;
 114  
     }
 115  
 
 116  
     /**
 117  
      * Sets the value of the lineString property.
 118  
      * 
 119  
      * @param value
 120  
      *     allowed object is
 121  
      *     {@link LineStringType }
 122  
      *     
 123  
      */
 124  
     public void setLineString(LineStringType value) {
 125  0
         this.lineString = value;
 126  0
     }
 127  
 
 128  
     /**
 129  
      * Gets the value of the polygon property.
 130  
      * 
 131  
      * @return
 132  
      *     possible object is
 133  
      *     {@link PolygonType }
 134  
      *     
 135  
      */
 136  
     public PolygonType getPolygon() {
 137  0
         return polygon;
 138  
     }
 139  
 
 140  
     /**
 141  
      * Sets the value of the polygon property.
 142  
      * 
 143  
      * @param value
 144  
      *     allowed object is
 145  
      *     {@link PolygonType }
 146  
      *     
 147  
      */
 148  
     public void setPolygon(PolygonType value) {
 149  0
         this.polygon = value;
 150  0
     }
 151  
 
 152  
     /**
 153  
      * Gets the value of the envelope property.
 154  
      * 
 155  
      * @return
 156  
      *     possible object is
 157  
      *     {@link EnvelopeType }
 158  
      *     
 159  
      */
 160  
     public EnvelopeType getEnvelope() {
 161  0
         return envelope;
 162  
     }
 163  
 
 164  
     /**
 165  
      * Sets the value of the envelope property.
 166  
      * 
 167  
      * @param value
 168  
      *     allowed object is
 169  
      *     {@link EnvelopeType }
 170  
      *     
 171  
      */
 172  
     public void setEnvelope(EnvelopeType value) {
 173  0
         this.envelope = value;
 174  0
     }
 175  
 
 176  
     /**
 177  
      * Gets the value of the featuretypetag property.
 178  
      * 
 179  
      * @return
 180  
      *     possible object is
 181  
      *     {@link String }
 182  
      *     
 183  
      */
 184  
     public String getFeaturetypetag() {
 185  0
         return featuretypetag;
 186  
     }
 187  
 
 188  
     /**
 189  
      * Sets the value of the featuretypetag property.
 190  
      * 
 191  
      * @param value
 192  
      *     allowed object is
 193  
      *     {@link String }
 194  
      *     
 195  
      */
 196  
     public void setFeaturetypetag(String value) {
 197  0
         this.featuretypetag = value;
 198  0
     }
 199  
 
 200  
     /**
 201  
      * Gets the value of the relationshiptag property.
 202  
      * 
 203  
      * @return
 204  
      *     possible object is
 205  
      *     {@link String }
 206  
      *     
 207  
      */
 208  
     public String getRelationshiptag() {
 209  0
         return relationshiptag;
 210  
     }
 211  
 
 212  
     /**
 213  
      * Sets the value of the relationshiptag property.
 214  
      * 
 215  
      * @param value
 216  
      *     allowed object is
 217  
      *     {@link String }
 218  
      *     
 219  
      */
 220  
     public void setRelationshiptag(String value) {
 221  0
         this.relationshiptag = value;
 222  0
     }
 223  
 
 224  
     /**
 225  
      * Gets the value of the elev property.
 226  
      * 
 227  
      * @return
 228  
      *     possible object is
 229  
      *     {@link Double }
 230  
      *     
 231  
      */
 232  
     public Double getElev() {
 233  0
         return elev;
 234  
     }
 235  
 
 236  
     /**
 237  
      * Sets the value of the elev property.
 238  
      * 
 239  
      * @param value
 240  
      *     allowed object is
 241  
      *     {@link Double }
 242  
      *     
 243  
      */
 244  
     public void setElev(Double value) {
 245  3
         this.elev = value;
 246  3
     }
 247  
 
 248  
     /**
 249  
      * Gets the value of the floor property.
 250  
      * 
 251  
      * @return
 252  
      *     possible object is
 253  
      *     {@link Double }
 254  
      *     
 255  
      */
 256  
     public Double getFloor() {
 257  0
         return floor;
 258  
     }
 259  
 
 260  
     /**
 261  
      * Sets the value of the floor property.
 262  
      * 
 263  
      * @param value
 264  
      *     allowed object is
 265  
      *     {@link Double }
 266  
      *     
 267  
      */
 268  
     public void setFloor(Double value) {
 269  0
         this.floor = value;
 270  0
     }
 271  
 
 272  
     /**
 273  
      * Gets the value of the radius property.
 274  
      * 
 275  
      * @return
 276  
      *     possible object is
 277  
      *     {@link Double }
 278  
      *     
 279  
      */
 280  
     public Double getRadius() {
 281  0
         return radius;
 282  
     }
 283  
 
 284  
     /**
 285  
      * Sets the value of the radius property.
 286  
      * 
 287  
      * @param value
 288  
      *     allowed object is
 289  
      *     {@link Double }
 290  
      *     
 291  
      */
 292  
     public void setRadius(Double value) {
 293  0
         this.radius = value;
 294  0
     }
 295  
 
 296  
 }