Coverage Report - de.jollyday.config.Fixed
 
Classes in this File Line Coverage Branch Coverage Complexity
Fixed
100%
7/7
N/A
1
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
 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: 2015.04.14 at 06:59:39 PM CEST 
 6  
 //
 7  
 
 8  
 
 9  
 package de.jollyday.config;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlAttribute;
 14  
 import javax.xml.bind.annotation.XmlType;
 15  
 
 16  
 
 17  
 /**
 18  
  * <p>Java class for Fixed complex type.
 19  
  * 
 20  
  * <p>The following schema fragment specifies the expected content contained within this class.
 21  
  * 
 22  
  * <pre>
 23  
  * &lt;complexType name="Fixed">
 24  
  *   &lt;complexContent>
 25  
  *     &lt;extension base="{http://www.example.org/Holiday}MoveableHoliday">
 26  
  *       &lt;attribute name="month" type="{http://www.example.org/Holiday}Month" />
 27  
  *       &lt;attribute name="day">
 28  
  *         &lt;simpleType>
 29  
  *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
 30  
  *             &lt;minInclusive value="1"/>
 31  
  *             &lt;maxInclusive value="31"/>
 32  
  *           &lt;/restriction>
 33  
  *         &lt;/simpleType>
 34  
  *       &lt;/attribute>
 35  
  *     &lt;/extension>
 36  
  *   &lt;/complexContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "Fixed")
 44  1627
 public class Fixed
 45  
     extends MoveableHoliday
 46  
 {
 47  
 
 48  
     @XmlAttribute(name = "month")
 49  
     protected Month month;
 50  
     @XmlAttribute(name = "day")
 51  
     protected Integer day;
 52  
 
 53  
     /**
 54  
      * Gets the value of the month property.
 55  
      * 
 56  
      * @return
 57  
      *     possible object is
 58  
      *     {@link Month }
 59  
      *     
 60  
      */
 61  
     public Month getMonth() {
 62  2109
         return month;
 63  
     }
 64  
 
 65  
     /**
 66  
      * Sets the value of the month property.
 67  
      * 
 68  
      * @param value
 69  
      *     allowed object is
 70  
      *     {@link Month }
 71  
      *     
 72  
      */
 73  
     public void setMonth(Month value) {
 74  23
         this.month = value;
 75  23
     }
 76  
 
 77  
     /**
 78  
      * Gets the value of the day property.
 79  
      * 
 80  
      * @return
 81  
      *     possible object is
 82  
      *     {@link Integer }
 83  
      *     
 84  
      */
 85  
     public Integer getDay() {
 86  2109
         return day;
 87  
     }
 88  
 
 89  
     /**
 90  
      * Sets the value of the day property.
 91  
      * 
 92  
      * @param value
 93  
      *     allowed object is
 94  
      *     {@link Integer }
 95  
      *     
 96  
      */
 97  
     public void setDay(Integer value) {
 98  23
         this.day = value;
 99  23
     }
 100  
 
 101  
 }