Coverage Report - de.jollyday.config.FixedWeekdayInMonth
 
Classes in this File Line Coverage Branch Coverage Complexity
FixedWeekdayInMonth
100%
10/10
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 FixedWeekdayInMonth complex type.
 19  
  * 
 20  
  * <p>The following schema fragment specifies the expected content contained within this class.
 21  
  * 
 22  
  * <pre>
 23  
  * &lt;complexType name="FixedWeekdayInMonth">
 24  
  *   &lt;complexContent>
 25  
  *     &lt;extension base="{http://www.example.org/Holiday}Holiday">
 26  
  *       &lt;attribute name="which" type="{http://www.example.org/Holiday}Which" />
 27  
  *       &lt;attribute name="weekday" type="{http://www.example.org/Holiday}Weekday" />
 28  
  *       &lt;attribute name="month" type="{http://www.example.org/Holiday}Month" />
 29  
  *     &lt;/extension>
 30  
  *   &lt;/complexContent>
 31  
  * &lt;/complexType>
 32  
  * </pre>
 33  
  * 
 34  
  * 
 35  
  */
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  
 @XmlType(name = "FixedWeekdayInMonth")
 38  230
 public class FixedWeekdayInMonth
 39  
     extends Holiday
 40  
 {
 41  
 
 42  
     @XmlAttribute(name = "which")
 43  
     protected Which which;
 44  
     @XmlAttribute(name = "weekday")
 45  
     protected Weekday weekday;
 46  
     @XmlAttribute(name = "month")
 47  
     protected Month month;
 48  
 
 49  
     /**
 50  
      * Gets the value of the which property.
 51  
      * 
 52  
      * @return
 53  
      *     possible object is
 54  
      *     {@link Which }
 55  
      *     
 56  
      */
 57  
     public Which getWhich() {
 58  766
         return which;
 59  
     }
 60  
 
 61  
     /**
 62  
      * Sets the value of the which property.
 63  
      * 
 64  
      * @param value
 65  
      *     allowed object is
 66  
      *     {@link Which }
 67  
      *     
 68  
      */
 69  
     public void setWhich(Which value) {
 70  2
         this.which = value;
 71  2
     }
 72  
 
 73  
     /**
 74  
      * Gets the value of the weekday property.
 75  
      * 
 76  
      * @return
 77  
      *     possible object is
 78  
      *     {@link Weekday }
 79  
      *     
 80  
      */
 81  
     public Weekday getWeekday() {
 82  383
         return weekday;
 83  
     }
 84  
 
 85  
     /**
 86  
      * Sets the value of the weekday property.
 87  
      * 
 88  
      * @param value
 89  
      *     allowed object is
 90  
      *     {@link Weekday }
 91  
      *     
 92  
      */
 93  
     public void setWeekday(Weekday value) {
 94  2
         this.weekday = value;
 95  2
     }
 96  
 
 97  
     /**
 98  
      * Gets the value of the month property.
 99  
      * 
 100  
      * @return
 101  
      *     possible object is
 102  
      *     {@link Month }
 103  
      *     
 104  
      */
 105  
     public Month getMonth() {
 106  383
         return month;
 107  
     }
 108  
 
 109  
     /**
 110  
      * Sets the value of the month property.
 111  
      * 
 112  
      * @param value
 113  
      *     allowed object is
 114  
      *     {@link Month }
 115  
      *     
 116  
      */
 117  
     public void setMonth(Month value) {
 118  2
         this.month = value;
 119  2
     }
 120  
 
 121  
 }