Coverage Report - yarfraw.generated.rss10.elements.TRss10Image
 
Classes in this File Line Coverage Branch Coverage Complexity
TRss10Image
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:45 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.rss10.elements;
 10  
 
 11  
 import java.util.HashMap;
 12  
 import java.util.Map;
 13  
 import javax.xml.bind.annotation.XmlAccessType;
 14  
 import javax.xml.bind.annotation.XmlAccessorType;
 15  
 import javax.xml.bind.annotation.XmlAnyAttribute;
 16  
 import javax.xml.bind.annotation.XmlAttribute;
 17  
 import javax.xml.bind.annotation.XmlSchemaType;
 18  
 import javax.xml.bind.annotation.XmlType;
 19  
 import javax.xml.namespace.QName;
 20  
 
 21  
 
 22  
 /**
 23  
  * An image to be associated with an HTML rendering of the channel. 
 24  
  *                         This image should be of a format supported by the majority of Web browsers. 
 25  
  *                         While the later 0.91 specification allowed for a width of 1-144 and height of 1-400, 
 26  
  *                         convention (and the 0.9 specification) dictate 88x31.
 27  
  * 
 28  
  * <p>Java class for tRss10Image complex type.
 29  
  * 
 30  
  * <p>The following schema fragment specifies the expected content contained within this class.
 31  
  * 
 32  
  * <pre>
 33  
  * &lt;complexType name="tRss10Image">
 34  
  *   &lt;complexContent>
 35  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 36  
  *       &lt;all>
 37  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
 38  
  *         &lt;element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 39  
  *         &lt;element name="link" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
 40  
  *       &lt;/all>
 41  
  *       &lt;attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}about use="required""/>
 42  
  *       &lt;attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
 43  
  *     &lt;/restriction>
 44  
  *   &lt;/complexContent>
 45  
  * &lt;/complexType>
 46  
  * </pre>
 47  
  * 
 48  
  * 
 49  
  */
 50  
 @XmlAccessorType(XmlAccessType.FIELD)
 51  
 @XmlType(name = "tRss10Image", propOrder = {
 52  
 
 53  
 })
 54  
 public class TRss10Image {
 55  
 
 56  
     @XmlSchemaType(name = "anyURI")
 57  
     protected String url;
 58  
     protected String title;
 59  
     @XmlSchemaType(name = "anyURI")
 60  
     protected String link;
 61  
     @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#", required = true)
 62  
     @XmlSchemaType(name = "anyURI")
 63  
     protected String about;
 64  
     @XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
 65  
     @XmlSchemaType(name = "anyURI")
 66  
     protected String resource;
 67  
     @XmlAnyAttribute
 68  
     private Map<QName, String> otherAttributes = new HashMap<QName, String>();
 69  
 
 70  
     /**
 71  
      * Gets the value of the url property.
 72  
      * 
 73  
      * @return
 74  
      *     possible object is
 75  
      *     {@link String }
 76  
      *     
 77  
      */
 78  
     public String getUrl() {
 79  
         return url;
 80  
     }
 81  
 
 82  
     /**
 83  
      * Sets the value of the url property.
 84  
      * 
 85  
      * @param value
 86  
      *     allowed object is
 87  
      *     {@link String }
 88  
      *     
 89  
      */
 90  
     public void setUrl(String value) {
 91  
         this.url = value;
 92  
     }
 93  
 
 94  
     /**
 95  
      * Gets the value of the title property.
 96  
      * 
 97  
      * @return
 98  
      *     possible object is
 99  
      *     {@link String }
 100  
      *     
 101  
      */
 102  
     public String getTitle() {
 103  
         return title;
 104  
     }
 105  
 
 106  
     /**
 107  
      * Sets the value of the title property.
 108  
      * 
 109  
      * @param value
 110  
      *     allowed object is
 111  
      *     {@link String }
 112  
      *     
 113  
      */
 114  
     public void setTitle(String value) {
 115  
         this.title = value;
 116  
     }
 117  
 
 118  
     /**
 119  
      * Gets the value of the link property.
 120  
      * 
 121  
      * @return
 122  
      *     possible object is
 123  
      *     {@link String }
 124  
      *     
 125  
      */
 126  
     public String getLink() {
 127  
         return link;
 128  
     }
 129  
 
 130  
     /**
 131  
      * Sets the value of the link property.
 132  
      * 
 133  
      * @param value
 134  
      *     allowed object is
 135  
      *     {@link String }
 136  
      *     
 137  
      */
 138  
     public void setLink(String value) {
 139  
         this.link = value;
 140  
     }
 141  
 
 142  
     /**
 143  
      * Gets the value of the about property.
 144  
      * 
 145  
      * @return
 146  
      *     possible object is
 147  
      *     {@link String }
 148  
      *     
 149  
      */
 150  
     public String getAbout() {
 151  
         return about;
 152  
     }
 153  
 
 154  
     /**
 155  
      * Sets the value of the about property.
 156  
      * 
 157  
      * @param value
 158  
      *     allowed object is
 159  
      *     {@link String }
 160  
      *     
 161  
      */
 162  
     public void setAbout(String value) {
 163  
         this.about = value;
 164  
     }
 165  
 
 166  
     /**
 167  
      * Gets the value of the resource property.
 168  
      * 
 169  
      * @return
 170  
      *     possible object is
 171  
      *     {@link String }
 172  
      *     
 173  
      */
 174  
     public String getResource() {
 175  
         return resource;
 176  
     }
 177  
 
 178  
     /**
 179  
      * Sets the value of the resource property.
 180  
      * 
 181  
      * @param value
 182  
      *     allowed object is
 183  
      *     {@link String }
 184  
      *     
 185  
      */
 186  
     public void setResource(String value) {
 187  
         this.resource = value;
 188  
     }
 189  
 
 190  
     /**
 191  
      * Gets a map that contains attributes that aren't bound to any typed property on this class.
 192  
      * 
 193  
      * <p>
 194  
      * the map is keyed by the name of the attribute and 
 195  
      * the value is the string value of the attribute.
 196  
      * 
 197  
      * the map returned by this method is live, and you can add new attribute
 198  
      * by updating the map directly. Because of this design, there's no setter.
 199  
      * 
 200  
      * 
 201  
      * @return
 202  
      *     always non-null
 203  
      */
 204  
     public Map<QName, String> getOtherAttributes() {
 205  
         return otherAttributes;
 206  
     }
 207  
 
 208  
 }