Coverage Report - yarfraw.generated.googlebase.elements.DateTimeRangeType
 
Classes in this File Line Coverage Branch Coverage Complexity
DateTimeRangeType
43% 
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.googlebase.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.XmlSchemaType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 import javax.xml.datatype.XMLGregorianCalendar;
 17  
 
 18  
 
 19  
 /**
 20  
  *  
 21  
  *         Defines a time interval.
 22  
  *       
 23  
  * 
 24  
  * <p>Java class for dateTimeRangeType complex type.
 25  
  * 
 26  
  * <p>The following schema fragment specifies the expected content contained within this class.
 27  
  * 
 28  
  * <pre>
 29  
  * &lt;complexType name="dateTimeRangeType">
 30  
  *   &lt;complexContent>
 31  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 32  
  *       &lt;sequence>
 33  
  *         &lt;element name="start" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 34  
  *         &lt;element name="end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 35  
  *       &lt;/sequence>
 36  
  *     &lt;/restriction>
 37  
  *   &lt;/complexContent>
 38  
  * &lt;/complexType>
 39  
  * </pre>
 40  
  * 
 41  
  * 
 42  
  */
 43  
 @XmlAccessorType(XmlAccessType.FIELD)
 44  
 @XmlType(name = "dateTimeRangeType", propOrder = {
 45  
     "start",
 46  
     "end"
 47  
 })
 48  18
 public class DateTimeRangeType {
 49  
 
 50  
     @XmlElement(required = true)
 51  
     @XmlSchemaType(name = "dateTime")
 52  
     protected XMLGregorianCalendar start;
 53  
     @XmlSchemaType(name = "dateTime")
 54  
     protected XMLGregorianCalendar end;
 55  
 
 56  
     /**
 57  
      * Gets the value of the start property.
 58  
      * 
 59  
      * @return
 60  
      *     possible object is
 61  
      *     {@link XMLGregorianCalendar }
 62  
      *     
 63  
      */
 64  
     public XMLGregorianCalendar getStart() {
 65  0
         return start;
 66  
     }
 67  
 
 68  
     /**
 69  
      * Sets the value of the start property.
 70  
      * 
 71  
      * @param value
 72  
      *     allowed object is
 73  
      *     {@link XMLGregorianCalendar }
 74  
      *     
 75  
      */
 76  
     public void setStart(XMLGregorianCalendar value) {
 77  3
         this.start = value;
 78  3
     }
 79  
 
 80  
     /**
 81  
      * Gets the value of the end property.
 82  
      * 
 83  
      * @return
 84  
      *     possible object is
 85  
      *     {@link XMLGregorianCalendar }
 86  
      *     
 87  
      */
 88  
     public XMLGregorianCalendar getEnd() {
 89  0
         return end;
 90  
     }
 91  
 
 92  
     /**
 93  
      * Sets the value of the end property.
 94  
      * 
 95  
      * @param value
 96  
      *     allowed object is
 97  
      *     {@link XMLGregorianCalendar }
 98  
      *     
 99  
      */
 100  
     public void setEnd(XMLGregorianCalendar value) {
 101  0
         this.end = value;
 102  0
     }
 103  
 
 104  
 }