Coverage Report - net.opengis.gml.CodeType
 
Classes in this File Line Coverage Branch Coverage Complexity
CodeType
0% 
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 net.opengis.gml;
 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.XmlSchemaType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 import javax.xml.bind.annotation.XmlValue;
 17  
 
 18  
 
 19  
 /**
 20  
  * Name or code with an (optional) authority.  Text token.  
 21  
  *       If the codeSpace attribute is present, then its value should identify a dictionary, thesaurus 
 22  
  *       or authority for the term, such as the organisation who assigned the value, 
 23  
  *       or the dictionary from which it is taken.  
 24  
  *       A text string with an optional codeSpace attribute. 
 25  
  * 
 26  
  * <p>Java class for CodeType complex type.
 27  
  * 
 28  
  * <p>The following schema fragment specifies the expected content contained within this class.
 29  
  * 
 30  
  * <pre>
 31  
  * &lt;complexType name="CodeType">
 32  
  *   &lt;simpleContent>
 33  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 34  
  *       &lt;attribute name="codeSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 35  
  *     &lt;/extension>
 36  
  *   &lt;/simpleContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "CodeType", propOrder = {
 44  
     "value"
 45  
 })
 46  0
 public class CodeType {
 47  
 
 48  
     @XmlValue
 49  
     protected String value;
 50  
     @XmlAttribute
 51  
     @XmlSchemaType(name = "anyURI")
 52  
     protected String codeSpace;
 53  
 
 54  
     /**
 55  
      * Gets the value of the value property.
 56  
      * 
 57  
      * @return
 58  
      *     possible object is
 59  
      *     {@link String }
 60  
      *     
 61  
      */
 62  
     public String getValue() {
 63  0
         return value;
 64  
     }
 65  
 
 66  
     /**
 67  
      * Sets the value of the value property.
 68  
      * 
 69  
      * @param value
 70  
      *     allowed object is
 71  
      *     {@link String }
 72  
      *     
 73  
      */
 74  
     public void setValue(String value) {
 75  0
         this.value = value;
 76  0
     }
 77  
 
 78  
     /**
 79  
      * Gets the value of the codeSpace property.
 80  
      * 
 81  
      * @return
 82  
      *     possible object is
 83  
      *     {@link String }
 84  
      *     
 85  
      */
 86  
     public String getCodeSpace() {
 87  0
         return codeSpace;
 88  
     }
 89  
 
 90  
     /**
 91  
      * Sets the value of the codeSpace property.
 92  
      * 
 93  
      * @param value
 94  
      *     allowed object is
 95  
      *     {@link String }
 96  
      *     
 97  
      */
 98  
     public void setCodeSpace(String value) {
 99  0
         this.codeSpace = value;
 100  0
     }
 101  
 
 102  
 }