Coverage Report - yarfraw.generated.atom03.elements.GeneratorType
 
Classes in this File Line Coverage Branch Coverage Complexity
GeneratorType
40% 
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:38 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.atom03.elements;
 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  
  * <p>Java class for generatorType complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType name="generatorType">
 26  
  *   &lt;simpleContent>
 27  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 28  
  *       &lt;attribute name="url" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 29  
  *       &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
 30  
  *     &lt;/extension>
 31  
  *   &lt;/simpleContent>
 32  
  * &lt;/complexType>
 33  
  * </pre>
 34  
  * 
 35  
  * 
 36  
  */
 37  
 @XmlAccessorType(XmlAccessType.FIELD)
 38  
 @XmlType(name = "generatorType", propOrder = {
 39  
     "value"
 40  
 })
 41  3
 public class GeneratorType {
 42  
 
 43  
     @XmlValue
 44  
     protected String value;
 45  
     @XmlAttribute
 46  
     @XmlSchemaType(name = "anyURI")
 47  
     protected String url;
 48  
     @XmlAttribute
 49  
     protected String version;
 50  
 
 51  
     /**
 52  
      * Gets the value of the value property.
 53  
      * 
 54  
      * @return
 55  
      *     possible object is
 56  
      *     {@link String }
 57  
      *     
 58  
      */
 59  
     public String getValue() {
 60  3
         return value;
 61  
     }
 62  
 
 63  
     /**
 64  
      * Sets the value of the value property.
 65  
      * 
 66  
      * @param value
 67  
      *     allowed object is
 68  
      *     {@link String }
 69  
      *     
 70  
      */
 71  
     public void setValue(String value) {
 72  0
         this.value = value;
 73  0
     }
 74  
 
 75  
     /**
 76  
      * Gets the value of the url property.
 77  
      * 
 78  
      * @return
 79  
      *     possible object is
 80  
      *     {@link String }
 81  
      *     
 82  
      */
 83  
     public String getUrl() {
 84  3
         return url;
 85  
     }
 86  
 
 87  
     /**
 88  
      * Sets the value of the url property.
 89  
      * 
 90  
      * @param value
 91  
      *     allowed object is
 92  
      *     {@link String }
 93  
      *     
 94  
      */
 95  
     public void setUrl(String value) {
 96  0
         this.url = value;
 97  0
     }
 98  
 
 99  
     /**
 100  
      * Gets the value of the version property.
 101  
      * 
 102  
      * @return
 103  
      *     possible object is
 104  
      *     {@link String }
 105  
      *     
 106  
      */
 107  
     public String getVersion() {
 108  3
         return version;
 109  
     }
 110  
 
 111  
     /**
 112  
      * Sets the value of the version property.
 113  
      * 
 114  
      * @param value
 115  
      *     allowed object is
 116  
      *     {@link String }
 117  
      *     
 118  
      */
 119  
     public void setVersion(String value) {
 120  0
         this.version = value;
 121  0
     }
 122  
 
 123  
 }