Coverage Report - yarfraw.generated.rss10.elements.SyndicationExtension
 
Classes in this File Line Coverage Branch Coverage Complexity
SyndicationExtension
70% 
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.math.BigInteger;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlElement;
 15  
 import javax.xml.bind.annotation.XmlRootElement;
 16  
 import javax.xml.bind.annotation.XmlSchemaType;
 17  
 import javax.xml.bind.annotation.XmlType;
 18  
 
 19  
 
 20  
 /**
 21  
  * <p>Java class for anonymous complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType>
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;sequence>
 30  
  *         &lt;element ref="{http://purl.org/rss/1.0/modules/syndication/}updateBase"/>
 31  
  *         &lt;element ref="{http://purl.org/rss/1.0/modules/syndication/}updateFrequency"/>
 32  
  *         &lt;element ref="{http://purl.org/rss/1.0/modules/syndication/}updatePeriod"/>
 33  
  *       &lt;/sequence>
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "", propOrder = {
 43  
     "updateBase",
 44  
     "updateFrequency",
 45  
     "updatePeriod"
 46  
 })
 47  
 @XmlRootElement(name = "syndicationExtension", namespace = "http://purl.org/rss/1.0/modules/syndication/")
 48  6
 public class SyndicationExtension {
 49  
 
 50  
     @XmlElement(namespace = "http://purl.org/rss/1.0/modules/syndication/", required = true)
 51  
     protected String updateBase;
 52  
     @XmlElement(namespace = "http://purl.org/rss/1.0/modules/syndication/", required = true)
 53  
     @XmlSchemaType(name = "positiveInteger")
 54  
     protected BigInteger updateFrequency;
 55  
     @XmlElement(namespace = "http://purl.org/rss/1.0/modules/syndication/", required = true)
 56  
     protected UpdatePeriodEnum updatePeriod;
 57  
 
 58  
     /**
 59  
      * Gets the value of the updateBase property.
 60  
      * 
 61  
      * @return
 62  
      *     possible object is
 63  
      *     {@link String }
 64  
      *     
 65  
      */
 66  
     public String getUpdateBase() {
 67  0
         return updateBase;
 68  
     }
 69  
 
 70  
     /**
 71  
      * Sets the value of the updateBase property.
 72  
      * 
 73  
      * @param value
 74  
      *     allowed object is
 75  
      *     {@link String }
 76  
      *     
 77  
      */
 78  
     public void setUpdateBase(String value) {
 79  6
         this.updateBase = value;
 80  6
     }
 81  
 
 82  
     /**
 83  
      * Gets the value of the updateFrequency property.
 84  
      * 
 85  
      * @return
 86  
      *     possible object is
 87  
      *     {@link BigInteger }
 88  
      *     
 89  
      */
 90  
     public BigInteger getUpdateFrequency() {
 91  0
         return updateFrequency;
 92  
     }
 93  
 
 94  
     /**
 95  
      * Sets the value of the updateFrequency property.
 96  
      * 
 97  
      * @param value
 98  
      *     allowed object is
 99  
      *     {@link BigInteger }
 100  
      *     
 101  
      */
 102  
     public void setUpdateFrequency(BigInteger value) {
 103  6
         this.updateFrequency = value;
 104  6
     }
 105  
 
 106  
     /**
 107  
      * Gets the value of the updatePeriod property.
 108  
      * 
 109  
      * @return
 110  
      *     possible object is
 111  
      *     {@link UpdatePeriodEnum }
 112  
      *     
 113  
      */
 114  
     public UpdatePeriodEnum getUpdatePeriod() {
 115  0
         return updatePeriod;
 116  
     }
 117  
 
 118  
     /**
 119  
      * Sets the value of the updatePeriod property.
 120  
      * 
 121  
      * @param value
 122  
      *     allowed object is
 123  
      *     {@link UpdatePeriodEnum }
 124  
      *     
 125  
      */
 126  
     public void setUpdatePeriod(UpdatePeriodEnum value) {
 127  6
         this.updatePeriod = value;
 128  6
     }
 129  
 
 130  
 }