Coverage Report - yarfraw.generated.rss20.elements.TEnclosure
 
Classes in this File Line Coverage Branch Coverage Complexity
TEnclosure
100% 
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.rss20.elements;
 10  
 
 11  
 import java.math.BigInteger;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlAttribute;
 15  
 import javax.xml.bind.annotation.XmlSchemaType;
 16  
 import javax.xml.bind.annotation.XmlType;
 17  
 import javax.xml.bind.annotation.XmlValue;
 18  
 
 19  
 
 20  
 /**
 21  
  * <p>Java class for tEnclosure complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType name="tEnclosure">
 27  
  *   &lt;simpleContent>
 28  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 29  
  *       &lt;attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 30  
  *       &lt;attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 31  
  *       &lt;attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 32  
  *     &lt;/extension>
 33  
  *   &lt;/simpleContent>
 34  
  * &lt;/complexType>
 35  
  * </pre>
 36  
  * 
 37  
  * 
 38  
  */
 39  
 @XmlAccessorType(XmlAccessType.FIELD)
 40  
 @XmlType(name = "tEnclosure", propOrder = {
 41  
     "value"
 42  
 })
 43  444
 public class TEnclosure {
 44  
 
 45  
     @XmlValue
 46  
     protected String value;
 47  
     @XmlAttribute(required = true)
 48  
     @XmlSchemaType(name = "anyURI")
 49  
     protected String url;
 50  
     @XmlAttribute(required = true)
 51  
     @XmlSchemaType(name = "nonNegativeInteger")
 52  
     protected BigInteger length;
 53  
     @XmlAttribute(required = true)
 54  
     protected String type;
 55  
 
 56  
     /**
 57  
      * Gets the value of the value property.
 58  
      * 
 59  
      * @return
 60  
      *     possible object is
 61  
      *     {@link String }
 62  
      *     
 63  
      */
 64  
     public String getValue() {
 65  441
         return value;
 66  
     }
 67  
 
 68  
     /**
 69  
      * Sets the value of the value property.
 70  
      * 
 71  
      * @param value
 72  
      *     allowed object is
 73  
      *     {@link String }
 74  
      *     
 75  
      */
 76  
     public void setValue(String value) {
 77  3
         this.value = value;
 78  3
     }
 79  
 
 80  
     /**
 81  
      * Gets the value of the url property.
 82  
      * 
 83  
      * @return
 84  
      *     possible object is
 85  
      *     {@link String }
 86  
      *     
 87  
      */
 88  
     public String getUrl() {
 89  441
         return url;
 90  
     }
 91  
 
 92  
     /**
 93  
      * Sets the value of the url property.
 94  
      * 
 95  
      * @param value
 96  
      *     allowed object is
 97  
      *     {@link String }
 98  
      *     
 99  
      */
 100  
     public void setUrl(String value) {
 101  3
         this.url = value;
 102  3
     }
 103  
 
 104  
     /**
 105  
      * Gets the value of the length property.
 106  
      * 
 107  
      * @return
 108  
      *     possible object is
 109  
      *     {@link BigInteger }
 110  
      *     
 111  
      */
 112  
     public BigInteger getLength() {
 113  864
         return length;
 114  
     }
 115  
 
 116  
     /**
 117  
      * Sets the value of the length property.
 118  
      * 
 119  
      * @param value
 120  
      *     allowed object is
 121  
      *     {@link BigInteger }
 122  
      *     
 123  
      */
 124  
     public void setLength(BigInteger value) {
 125  3
         this.length = value;
 126  3
     }
 127  
 
 128  
     /**
 129  
      * Gets the value of the type property.
 130  
      * 
 131  
      * @return
 132  
      *     possible object is
 133  
      *     {@link String }
 134  
      *     
 135  
      */
 136  
     public String getType() {
 137  441
         return type;
 138  
     }
 139  
 
 140  
     /**
 141  
      * Sets the value of the type property.
 142  
      * 
 143  
      * @param value
 144  
      *     allowed object is
 145  
      *     {@link String }
 146  
      *     
 147  
      */
 148  
     public void setType(String value) {
 149  3
         this.type = value;
 150  3
     }
 151  
 
 152  
 }