Coverage Report - net.opengis.gml.AbstractMetaDataType
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractMetaDataType
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.XmlID;
 15  
 import javax.xml.bind.annotation.XmlSchemaType;
 16  
 import javax.xml.bind.annotation.XmlType;
 17  
 import javax.xml.bind.annotation.XmlValue;
 18  
 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
 19  
 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 20  
 
 21  
 
 22  
 /**
 23  
  *  An abstract base type for complex metadata types.
 24  
  * 
 25  
  * <p>Java class for AbstractMetaDataType complex type.
 26  
  * 
 27  
  * <p>The following schema fragment specifies the expected content contained within this class.
 28  
  * 
 29  
  * <pre>
 30  
  * &lt;complexType name="AbstractMetaDataType">
 31  
  *   &lt;complexContent>
 32  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 33  
  *       &lt;attribute ref="{http://www.opengis.net/gml}id"/>
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "AbstractMetaDataType", propOrder = {
 43  
     "content"
 44  
 })
 45  0
 public abstract class AbstractMetaDataType {
 46  
 
 47  
     @XmlValue
 48  
     protected String content;
 49  
     @XmlAttribute(namespace = "http://www.opengis.net/gml")
 50  
     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
 51  
     @XmlID
 52  
     @XmlSchemaType(name = "ID")
 53  
     protected String id;
 54  
 
 55  
     /**
 56  
      *  An abstract base type for complex metadata types.
 57  
      * 
 58  
      * @return
 59  
      *     possible object is
 60  
      *     {@link String }
 61  
      *     
 62  
      */
 63  
     public String getContent() {
 64  0
         return content;
 65  
     }
 66  
 
 67  
     /**
 68  
      * Sets the value of the content property.
 69  
      * 
 70  
      * @param value
 71  
      *     allowed object is
 72  
      *     {@link String }
 73  
      *     
 74  
      */
 75  
     public void setContent(String value) {
 76  0
         this.content = value;
 77  0
     }
 78  
 
 79  
     /**
 80  
      * Gets the value of the id property.
 81  
      * 
 82  
      * @return
 83  
      *     possible object is
 84  
      *     {@link String }
 85  
      *     
 86  
      */
 87  
     public String getId() {
 88  0
         return id;
 89  
     }
 90  
 
 91  
     /**
 92  
      * Sets the value of the id property.
 93  
      * 
 94  
      * @param value
 95  
      *     allowed object is
 96  
      *     {@link String }
 97  
      *     
 98  
      */
 99  
     public void setId(String value) {
 100  0
         this.id = value;
 101  0
     }
 102  
 
 103  
 }