Coverage Report - yarfraw.generated.mrss.elements.MrssThumbnailType
 
Classes in this File Line Coverage Branch Coverage Complexity
MrssThumbnailType
69% 
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:45 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.mrss.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  
 
 18  
 
 19  
 /**
 20  
  * <p>Java class for mrssThumbnailType complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType name="mrssThumbnailType">
 26  
  *   &lt;complexContent>
 27  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *       &lt;attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 29  
  *       &lt;attribute name="height" type="{http://www.w3.org/2001/XMLSchema}integer" />
 30  
  *       &lt;attribute name="width" type="{http://www.w3.org/2001/XMLSchema}integer" />
 31  
  *       &lt;attribute name="time" type="{http://www.w3.org/2001/XMLSchema}string" />
 32  
  *     &lt;/restriction>
 33  
  *   &lt;/complexContent>
 34  
  * &lt;/complexType>
 35  
  * </pre>
 36  
  * 
 37  
  * 
 38  
  */
 39  
 @XmlAccessorType(XmlAccessType.FIELD)
 40  
 @XmlType(name = "mrssThumbnailType")
 41  12
 public class MrssThumbnailType {
 42  
 
 43  
     @XmlAttribute(required = true)
 44  
     @XmlSchemaType(name = "anyURI")
 45  
     protected String url;
 46  
     @XmlAttribute
 47  
     protected BigInteger height;
 48  
     @XmlAttribute
 49  
     protected BigInteger width;
 50  
     @XmlAttribute
 51  
     protected String time;
 52  
 
 53  
     /**
 54  
      * Gets the value of the url property.
 55  
      * 
 56  
      * @return
 57  
      *     possible object is
 58  
      *     {@link String }
 59  
      *     
 60  
      */
 61  
     public String getUrl() {
 62  0
         return url;
 63  
     }
 64  
 
 65  
     /**
 66  
      * Sets the value of the url property.
 67  
      * 
 68  
      * @param value
 69  
      *     allowed object is
 70  
      *     {@link String }
 71  
      *     
 72  
      */
 73  
     public void setUrl(String value) {
 74  3
         this.url = value;
 75  3
     }
 76  
 
 77  
     /**
 78  
      * Gets the value of the height property.
 79  
      * 
 80  
      * @return
 81  
      *     possible object is
 82  
      *     {@link BigInteger }
 83  
      *     
 84  
      */
 85  
     public BigInteger getHeight() {
 86  0
         return height;
 87  
     }
 88  
 
 89  
     /**
 90  
      * Sets the value of the height property.
 91  
      * 
 92  
      * @param value
 93  
      *     allowed object is
 94  
      *     {@link BigInteger }
 95  
      *     
 96  
      */
 97  
     public void setHeight(BigInteger value) {
 98  3
         this.height = value;
 99  3
     }
 100  
 
 101  
     /**
 102  
      * Gets the value of the width property.
 103  
      * 
 104  
      * @return
 105  
      *     possible object is
 106  
      *     {@link BigInteger }
 107  
      *     
 108  
      */
 109  
     public BigInteger getWidth() {
 110  0
         return width;
 111  
     }
 112  
 
 113  
     /**
 114  
      * Sets the value of the width property.
 115  
      * 
 116  
      * @param value
 117  
      *     allowed object is
 118  
      *     {@link BigInteger }
 119  
      *     
 120  
      */
 121  
     public void setWidth(BigInteger value) {
 122  3
         this.width = value;
 123  3
     }
 124  
 
 125  
     /**
 126  
      * Gets the value of the time property.
 127  
      * 
 128  
      * @return
 129  
      *     possible object is
 130  
      *     {@link String }
 131  
      *     
 132  
      */
 133  
     public String getTime() {
 134  0
         return time;
 135  
     }
 136  
 
 137  
     /**
 138  
      * Sets the value of the time property.
 139  
      * 
 140  
      * @param value
 141  
      *     allowed object is
 142  
      *     {@link String }
 143  
      *     
 144  
      */
 145  
     public void setTime(String value) {
 146  3
         this.time = value;
 147  3
     }
 148  
 
 149  
 }