Coverage Report - yarfraw.generated.rss10.elements.Items
 
Classes in this File Line Coverage Branch Coverage Complexity
Items
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:45 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.rss10.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.XmlType;
 15  
 
 16  
 
 17  
 /**
 18  
  * <p>Java class for items complex type.
 19  
  * 
 20  
  * <p>The following schema fragment specifies the expected content contained within this class.
 21  
  * 
 22  
  * <pre>
 23  
  * &lt;complexType name="items">
 24  
  *   &lt;complexContent>
 25  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 26  
  *       &lt;sequence>
 27  
  *         &lt;element ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}Seq"/>
 28  
  *       &lt;/sequence>
 29  
  *     &lt;/restriction>
 30  
  *   &lt;/complexContent>
 31  
  * &lt;/complexType>
 32  
  * </pre>
 33  
  * 
 34  
  * 
 35  
  */
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  
 @XmlType(name = "items", propOrder = {
 38  
     "seq"
 39  
 })
 40  39
 public class Items {
 41  
 
 42  
     @XmlElement(name = "Seq", namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#", required = true)
 43  
     protected Seq seq;
 44  
 
 45  
     /**
 46  
      * Gets the value of the seq property.
 47  
      * 
 48  
      * @return
 49  
      *     possible object is
 50  
      *     {@link Seq }
 51  
      *     
 52  
      */
 53  
     public Seq getSeq() {
 54  27
         return seq;
 55  
     }
 56  
 
 57  
     /**
 58  
      * Sets the value of the seq property.
 59  
      * 
 60  
      * @param value
 61  
      *     allowed object is
 62  
      *     {@link Seq }
 63  
      *     
 64  
      */
 65  
     public void setSeq(Seq value) {
 66  15
         this.seq = value;
 67  15
     }
 68  
 
 69  
 }