Coverage Report - yarfraw.generated.rss20.elements.TImage
 
Classes in this File Line Coverage Branch Coverage Complexity
TImage
N/A 
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 javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlElement;
 14  
 import javax.xml.bind.annotation.XmlSchemaType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for tImage complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="tImage">
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;all>
 28  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 29  
  *         &lt;element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
 30  
  *         &lt;element name="link" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 31  
  *         &lt;element name="width" type="{}tImageWidth" minOccurs="0"/>
 32  
  *         &lt;element name="height" type="{}tImageHeight" minOccurs="0"/>
 33  
  *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *       &lt;/all>
 35  
  *     &lt;/restriction>
 36  
  *   &lt;/complexContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "tImage", propOrder = {
 44  
 
 45  
 })
 46  
 public class TImage {
 47  
 
 48  
     @XmlElement(required = true)
 49  
     @XmlSchemaType(name = "anyURI")
 50  
     protected String url;
 51  
     @XmlElement(required = true)
 52  
     protected String title;
 53  
     @XmlElement(required = true)
 54  
     @XmlSchemaType(name = "anyURI")
 55  
     protected String link;
 56  
     @XmlElement(defaultValue = "88")
 57  
     protected Integer width;
 58  
     @XmlElement(defaultValue = "31")
 59  
     protected Integer height;
 60  
     protected String description;
 61  
 
 62  
     /**
 63  
      * Gets the value of the url property.
 64  
      * 
 65  
      * @return
 66  
      *     possible object is
 67  
      *     {@link String }
 68  
      *     
 69  
      */
 70  
     public String getUrl() {
 71  
         return url;
 72  
     }
 73  
 
 74  
     /**
 75  
      * Sets the value of the url property.
 76  
      * 
 77  
      * @param value
 78  
      *     allowed object is
 79  
      *     {@link String }
 80  
      *     
 81  
      */
 82  
     public void setUrl(String value) {
 83  
         this.url = value;
 84  
     }
 85  
 
 86  
     /**
 87  
      * Gets the value of the title property.
 88  
      * 
 89  
      * @return
 90  
      *     possible object is
 91  
      *     {@link String }
 92  
      *     
 93  
      */
 94  
     public String getTitle() {
 95  
         return title;
 96  
     }
 97  
 
 98  
     /**
 99  
      * Sets the value of the title property.
 100  
      * 
 101  
      * @param value
 102  
      *     allowed object is
 103  
      *     {@link String }
 104  
      *     
 105  
      */
 106  
     public void setTitle(String value) {
 107  
         this.title = value;
 108  
     }
 109  
 
 110  
     /**
 111  
      * Gets the value of the link property.
 112  
      * 
 113  
      * @return
 114  
      *     possible object is
 115  
      *     {@link String }
 116  
      *     
 117  
      */
 118  
     public String getLink() {
 119  
         return link;
 120  
     }
 121  
 
 122  
     /**
 123  
      * Sets the value of the link property.
 124  
      * 
 125  
      * @param value
 126  
      *     allowed object is
 127  
      *     {@link String }
 128  
      *     
 129  
      */
 130  
     public void setLink(String value) {
 131  
         this.link = value;
 132  
     }
 133  
 
 134  
     /**
 135  
      * Gets the value of the width property.
 136  
      * 
 137  
      * @return
 138  
      *     possible object is
 139  
      *     {@link Integer }
 140  
      *     
 141  
      */
 142  
     public Integer getWidth() {
 143  
         return width;
 144  
     }
 145  
 
 146  
     /**
 147  
      * Sets the value of the width property.
 148  
      * 
 149  
      * @param value
 150  
      *     allowed object is
 151  
      *     {@link Integer }
 152  
      *     
 153  
      */
 154  
     public void setWidth(Integer value) {
 155  
         this.width = value;
 156  
     }
 157  
 
 158  
     /**
 159  
      * Gets the value of the height property.
 160  
      * 
 161  
      * @return
 162  
      *     possible object is
 163  
      *     {@link Integer }
 164  
      *     
 165  
      */
 166  
     public Integer getHeight() {
 167  
         return height;
 168  
     }
 169  
 
 170  
     /**
 171  
      * Sets the value of the height property.
 172  
      * 
 173  
      * @param value
 174  
      *     allowed object is
 175  
      *     {@link Integer }
 176  
      *     
 177  
      */
 178  
     public void setHeight(Integer value) {
 179  
         this.height = value;
 180  
     }
 181  
 
 182  
     /**
 183  
      * Gets the value of the description property.
 184  
      * 
 185  
      * @return
 186  
      *     possible object is
 187  
      *     {@link String }
 188  
      *     
 189  
      */
 190  
     public String getDescription() {
 191  
         return description;
 192  
     }
 193  
 
 194  
     /**
 195  
      * Sets the value of the description property.
 196  
      * 
 197  
      * @param value
 198  
      *     allowed object is
 199  
      *     {@link String }
 200  
      *     
 201  
      */
 202  
     public void setDescription(String value) {
 203  
         this.description = value;
 204  
     }
 205  
 
 206  
 }