Coverage Report - yarfraw.generated.rss20.elements.TSkipDaysList
 
Classes in this File Line Coverage Branch Coverage Complexity
TSkipDaysList
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:38 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.rss20.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.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for tSkipDaysList complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="tSkipDaysList">
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;sequence>
 28  
  *         &lt;element name="day" type="{}tSkipDay" maxOccurs="7" minOccurs="0"/>
 29  
  *       &lt;/sequence>
 30  
  *     &lt;/restriction>
 31  
  *   &lt;/complexContent>
 32  
  * &lt;/complexType>
 33  
  * </pre>
 34  
  * 
 35  
  * 
 36  
  */
 37  
 @XmlAccessorType(XmlAccessType.FIELD)
 38  
 @XmlType(name = "tSkipDaysList", propOrder = {
 39  
     "day"
 40  
 })
 41  9
 public class TSkipDaysList {
 42  
 
 43  
     protected List<TSkipDay> day;
 44  
 
 45  
     /**
 46  
      * Gets the value of the day property.
 47  
      * 
 48  
      * <p>
 49  
      * This accessor method returns a reference to the live list,
 50  
      * not a snapshot. Therefore any modification you make to the
 51  
      * returned list will be present inside the JAXB object.
 52  
      * This is why there is not a <CODE>set</CODE> method for the day property.
 53  
      * 
 54  
      * <p>
 55  
      * For example, to add a new item, do as follows:
 56  
      * <pre>
 57  
      *    getDay().add(newItem);
 58  
      * </pre>
 59  
      * 
 60  
      * 
 61  
      * <p>
 62  
      * Objects of the following type(s) are allowed in the list
 63  
      * {@link TSkipDay }
 64  
      * 
 65  
      * 
 66  
      */
 67  
     public List<TSkipDay> getDay() {
 68  12
         if (day == null) {
 69  3
             day = new ArrayList<TSkipDay>();
 70  
         }
 71  12
         return this.day;
 72  
     }
 73  
 
 74  
 }