Coverage Report - net.opengis.gml.DirectPositionListType
 
Classes in this File Line Coverage Branch Coverage Complexity
DirectPositionListType
0% 
0% 
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 net.opengis.gml;
 10  
 
 11  
 import java.math.BigInteger;
 12  
 import java.util.ArrayList;
 13  
 import java.util.List;
 14  
 import javax.xml.bind.annotation.XmlAccessType;
 15  
 import javax.xml.bind.annotation.XmlAccessorType;
 16  
 import javax.xml.bind.annotation.XmlAttribute;
 17  
 import javax.xml.bind.annotation.XmlSchemaType;
 18  
 import javax.xml.bind.annotation.XmlType;
 19  
 import javax.xml.bind.annotation.XmlValue;
 20  
 
 21  
 
 22  
 /**
 23  
  * DirectPositionList instances hold the coordinates for a sequence of direct positions within the same coordinate reference system (CRS).
 24  
  * 
 25  
  * <p>Java class for DirectPositionListType complex type.
 26  
  * 
 27  
  * <p>The following schema fragment specifies the expected content contained within this class.
 28  
  * 
 29  
  * <pre>
 30  
  * &lt;complexType name="DirectPositionListType">
 31  
  *   &lt;simpleContent>
 32  
  *     &lt;extension base="&lt;http://www.opengis.net/gml>doubleList">
 33  
  *       &lt;attGroup ref="{http://www.opengis.net/gml}SRSReferenceGroup"/>
 34  
  *       &lt;attribute name="count" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
 35  
  *     &lt;/extension>
 36  
  *   &lt;/simpleContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "DirectPositionListType", propOrder = {
 44  
     "value"
 45  
 })
 46  0
 public class DirectPositionListType {
 47  
 
 48  
     @XmlValue
 49  
     protected List<Double> value;
 50  
     @XmlAttribute
 51  
     @XmlSchemaType(name = "positiveInteger")
 52  
     protected BigInteger count;
 53  
     @XmlAttribute
 54  
     @XmlSchemaType(name = "anyURI")
 55  
     protected String srsName;
 56  
     @XmlAttribute
 57  
     @XmlSchemaType(name = "positiveInteger")
 58  
     protected BigInteger srsDimension;
 59  
     @XmlAttribute
 60  
     protected List<String> axisLabels;
 61  
     @XmlAttribute
 62  
     protected List<String> uomLabels;
 63  
 
 64  
     /**
 65  
      * XML List based on XML Schema double type.  An element of this type contains a space-separated list of double values Gets the value of the value property.
 66  
      * 
 67  
      * <p>
 68  
      * This accessor method returns a reference to the live list,
 69  
      * not a snapshot. Therefore any modification you make to the
 70  
      * returned list will be present inside the JAXB object.
 71  
      * This is why there is not a <CODE>set</CODE> method for the value property.
 72  
      * 
 73  
      * <p>
 74  
      * For example, to add a new item, do as follows:
 75  
      * <pre>
 76  
      *    getValue().add(newItem);
 77  
      * </pre>
 78  
      * 
 79  
      * 
 80  
      * <p>
 81  
      * Objects of the following type(s) are allowed in the list
 82  
      * {@link Double }
 83  
      * 
 84  
      * 
 85  
      */
 86  
     public List<Double> getValue() {
 87  0
         if (value == null) {
 88  0
             value = new ArrayList<Double>();
 89  
         }
 90  0
         return this.value;
 91  
     }
 92  
 
 93  
     /**
 94  
      * Gets the value of the count property.
 95  
      * 
 96  
      * @return
 97  
      *     possible object is
 98  
      *     {@link BigInteger }
 99  
      *     
 100  
      */
 101  
     public BigInteger getCount() {
 102  0
         return count;
 103  
     }
 104  
 
 105  
     /**
 106  
      * Sets the value of the count property.
 107  
      * 
 108  
      * @param value
 109  
      *     allowed object is
 110  
      *     {@link BigInteger }
 111  
      *     
 112  
      */
 113  
     public void setCount(BigInteger value) {
 114  0
         this.count = value;
 115  0
     }
 116  
 
 117  
     /**
 118  
      * Gets the value of the srsName property.
 119  
      * 
 120  
      * @return
 121  
      *     possible object is
 122  
      *     {@link String }
 123  
      *     
 124  
      */
 125  
     public String getSrsName() {
 126  0
         return srsName;
 127  
     }
 128  
 
 129  
     /**
 130  
      * Sets the value of the srsName property.
 131  
      * 
 132  
      * @param value
 133  
      *     allowed object is
 134  
      *     {@link String }
 135  
      *     
 136  
      */
 137  
     public void setSrsName(String value) {
 138  0
         this.srsName = value;
 139  0
     }
 140  
 
 141  
     /**
 142  
      * Gets the value of the srsDimension property.
 143  
      * 
 144  
      * @return
 145  
      *     possible object is
 146  
      *     {@link BigInteger }
 147  
      *     
 148  
      */
 149  
     public BigInteger getSrsDimension() {
 150  0
         return srsDimension;
 151  
     }
 152  
 
 153  
     /**
 154  
      * Sets the value of the srsDimension property.
 155  
      * 
 156  
      * @param value
 157  
      *     allowed object is
 158  
      *     {@link BigInteger }
 159  
      *     
 160  
      */
 161  
     public void setSrsDimension(BigInteger value) {
 162  0
         this.srsDimension = value;
 163  0
     }
 164  
 
 165  
     /**
 166  
      * Gets the value of the axisLabels property.
 167  
      * 
 168  
      * <p>
 169  
      * This accessor method returns a reference to the live list,
 170  
      * not a snapshot. Therefore any modification you make to the
 171  
      * returned list will be present inside the JAXB object.
 172  
      * This is why there is not a <CODE>set</CODE> method for the axisLabels property.
 173  
      * 
 174  
      * <p>
 175  
      * For example, to add a new item, do as follows:
 176  
      * <pre>
 177  
      *    getAxisLabels().add(newItem);
 178  
      * </pre>
 179  
      * 
 180  
      * 
 181  
      * <p>
 182  
      * Objects of the following type(s) are allowed in the list
 183  
      * {@link String }
 184  
      * 
 185  
      * 
 186  
      */
 187  
     public List<String> getAxisLabels() {
 188  0
         if (axisLabels == null) {
 189  0
             axisLabels = new ArrayList<String>();
 190  
         }
 191  0
         return this.axisLabels;
 192  
     }
 193  
 
 194  
     /**
 195  
      * Gets the value of the uomLabels property.
 196  
      * 
 197  
      * <p>
 198  
      * This accessor method returns a reference to the live list,
 199  
      * not a snapshot. Therefore any modification you make to the
 200  
      * returned list will be present inside the JAXB object.
 201  
      * This is why there is not a <CODE>set</CODE> method for the uomLabels property.
 202  
      * 
 203  
      * <p>
 204  
      * For example, to add a new item, do as follows:
 205  
      * <pre>
 206  
      *    getUomLabels().add(newItem);
 207  
      * </pre>
 208  
      * 
 209  
      * 
 210  
      * <p>
 211  
      * Objects of the following type(s) are allowed in the list
 212  
      * {@link String }
 213  
      * 
 214  
      * 
 215  
      */
 216  
     public List<String> getUomLabels() {
 217  0
         if (uomLabels == null) {
 218  0
             uomLabels = new ArrayList<String>();
 219  
         }
 220  0
         return this.uomLabels;
 221  
     }
 222  
 
 223  
 }