Coverage Report - yarfraw.generated.rss10.elements.Seq
 
Classes in this File Line Coverage Branch Coverage Complexity
Seq
100% 
100% 
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.ArrayList;
 12  
 import java.util.List;
 13  
 import javax.xml.bind.annotation.XmlAccessType;
 14  
 import javax.xml.bind.annotation.XmlAccessorType;
 15  
 import javax.xml.bind.annotation.XmlElement;
 16  
 import javax.xml.bind.annotation.XmlRootElement;
 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://www.w3.org/1999/02/22-rdf-syntax-ns#}li" maxOccurs="unbounded"/>
 31  
  *       &lt;/sequence>
 32  
  *     &lt;/restriction>
 33  
  *   &lt;/complexContent>
 34  
  * &lt;/complexType>
 35  
  * </pre>
 36  
  * 
 37  
  * 
 38  
  */
 39  
 @XmlAccessorType(XmlAccessType.FIELD)
 40  
 @XmlType(name = "", propOrder = {
 41  
     "li"
 42  
 })
 43  
 @XmlRootElement(name = "Seq", namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
 44  39
 public class Seq {
 45  
 
 46  
     @XmlElement(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#", required = true)
 47  
     protected List<Li> li;
 48  
 
 49  
     /**
 50  
      * Gets the value of the li property.
 51  
      * 
 52  
      * <p>
 53  
      * This accessor method returns a reference to the live list,
 54  
      * not a snapshot. Therefore any modification you make to the
 55  
      * returned list will be present inside the JAXB object.
 56  
      * This is why there is not a <CODE>set</CODE> method for the li property.
 57  
      * 
 58  
      * <p>
 59  
      * For example, to add a new item, do as follows:
 60  
      * <pre>
 61  
      *    getLi().add(newItem);
 62  
      * </pre>
 63  
      * 
 64  
      * 
 65  
      * <p>
 66  
      * Objects of the following type(s) are allowed in the list
 67  
      * {@link Li }
 68  
      * 
 69  
      * 
 70  
      */
 71  
     public List<Li> getLi() {
 72  81
         if (li == null) {
 73  15
             li = new ArrayList<Li>();
 74  
         }
 75  81
         return this.li;
 76  
     }
 77  
 
 78  
 }