Coverage Report - yarfraw.generated.feedburner.elements.FeedburnerExtension
 
Classes in this File Line Coverage Branch Coverage Complexity
FeedburnerExtension
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:46 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.feedburner.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.XmlRootElement;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for anonymous complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType>
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;sequence>
 28  
  *         &lt;element ref="{http://rssnamespace.org/feedburner/ext/1.0}browserFriendly"/>
 29  
  *         &lt;element ref="{http://rssnamespace.org/feedburner/ext/1.0}origLink"/>
 30  
  *       &lt;/sequence>
 31  
  *     &lt;/restriction>
 32  
  *   &lt;/complexContent>
 33  
  * &lt;/complexType>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "", propOrder = {
 40  
     "browserFriendly",
 41  
     "origLink"
 42  
 })
 43  
 @XmlRootElement(name = "feedburnerExtension")
 44  6
 public class FeedburnerExtension {
 45  
 
 46  
     @XmlElement(required = true)
 47  
     protected String browserFriendly;
 48  
     @XmlElement(required = true)
 49  
     protected String origLink;
 50  
 
 51  
     /**
 52  
      *  
 53  
      * Feedburner RSS extension elements. <br/> Contain a 'browser friendly' description
 54  
      * about the parent element.
 55  
      *                                                  
 56  
      *                                                 
 57  
      * 
 58  
      * @return
 59  
      *     possible object is
 60  
      *     {@link String }
 61  
      *     
 62  
      */
 63  
     public String getBrowserFriendly() {
 64  6
         return browserFriendly;
 65  
     }
 66  
 
 67  
     /**
 68  
      * Sets the value of the browserFriendly property.
 69  
      * 
 70  
      * @param value
 71  
      *     allowed object is
 72  
      *     {@link String }
 73  
      *     
 74  
      */
 75  
     public void setBrowserFriendly(String value) {
 76  6
         this.browserFriendly = value;
 77  6
     }
 78  
 
 79  
     /**
 80  
      *  
 81  
      * Feedburner RSS extension elements. <br/> The original link 
 82  
      * of the channel.
 83  
      *                                                  
 84  
      *                                                 
 85  
      * 
 86  
      * @return
 87  
      *     possible object is
 88  
      *     {@link String }
 89  
      *     
 90  
      */
 91  
     public String getOrigLink() {
 92  6
         return origLink;
 93  
     }
 94  
 
 95  
     /**
 96  
      * Sets the value of the origLink property.
 97  
      * 
 98  
      * @param value
 99  
      *     allowed object is
 100  
      *     {@link String }
 101  
      *     
 102  
      */
 103  
     public void setOrigLink(String value) {
 104  6
         this.origLink = value;
 105  6
     }
 106  
 
 107  
 }