Coverage Report - net.opengis.gml.AbstractRingPropertyType
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractRingPropertyType
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.JAXBElement;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlElementRef;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * 
 20  
  *                                 Encapsulates a ring to represent the surface boundary property of a surface.
 21  
  *                         
 22  
  * 
 23  
  * <p>Java class for AbstractRingPropertyType complex type.
 24  
  * 
 25  
  * <p>The following schema fragment specifies the expected content contained within this class.
 26  
  * 
 27  
  * <pre>
 28  
  * &lt;complexType name="AbstractRingPropertyType">
 29  
  *   &lt;complexContent>
 30  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 31  
  *       &lt;sequence>
 32  
  *         &lt;element ref="{http://www.opengis.net/gml}_Ring"/>
 33  
  *       &lt;/sequence>
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "AbstractRingPropertyType", propOrder = {
 43  
     "ring"
 44  
 })
 45  0
 public class AbstractRingPropertyType {
 46  
 
 47  
     @XmlElementRef(name = "_Ring", namespace = "http://www.opengis.net/gml", type = JAXBElement.class)
 48  
     protected JAXBElement<? extends AbstractRingType> ring;
 49  
 
 50  
     /**
 51  
      * Gets the value of the ring property.
 52  
      * 
 53  
      * @return
 54  
      *     possible object is
 55  
      *     {@link JAXBElement }{@code <}{@link AbstractRingType }{@code >}
 56  
      *     {@link JAXBElement }{@code <}{@link LinearRingType }{@code >}
 57  
      *     
 58  
      */
 59  
     public JAXBElement<? extends AbstractRingType> getRing() {
 60  0
         return ring;
 61  
     }
 62  
 
 63  
     /**
 64  
      * Sets the value of the ring property.
 65  
      * 
 66  
      * @param value
 67  
      *     allowed object is
 68  
      *     {@link JAXBElement }{@code <}{@link AbstractRingType }{@code >}
 69  
      *     {@link JAXBElement }{@code <}{@link LinearRingType }{@code >}
 70  
      *     
 71  
      */
 72  
     public void setRing(JAXBElement<? extends AbstractRingType> value) {
 73  0
         this.ring = ((JAXBElement<? extends AbstractRingType> ) value);
 74  0
     }
 75  
 
 76  
 }