| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RelativeToFixed |
|
| 1.0;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.XmlElement; | |
| 14 | import javax.xml.bind.annotation.XmlType; | |
| 15 | ||
| 16 | ||
| 17 | /** | |
| 18 | * <p>Java class for RelativeToFixed complex type. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="RelativeToFixed"> | |
| 24 | * <complexContent> | |
| 25 | * <extension base="{http://www.example.org/Holiday}Holiday"> | |
| 26 | * <sequence> | |
| 27 | * <choice> | |
| 28 | * <element name="Days" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> | |
| 29 | * <element name="Weekday" type="{http://www.example.org/Holiday}Weekday" minOccurs="0"/> | |
| 30 | * </choice> | |
| 31 | * <element name="When" type="{http://www.example.org/Holiday}When"/> | |
| 32 | * <element name="Date" type="{http://www.example.org/Holiday}Fixed"/> | |
| 33 | * </sequence> | |
| 34 | * </extension> | |
| 35 | * </complexContent> | |
| 36 | * </complexType> | |
| 37 | * </pre> | |
| 38 | * | |
| 39 | * | |
| 40 | */ | |
| 41 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 42 | @XmlType(name = "RelativeToFixed", propOrder = { | |
| 43 | "days", | |
| 44 | "weekday", | |
| 45 | "when", | |
| 46 | "date" | |
| 47 | }) | |
| 48 | 15 | public class RelativeToFixed |
| 49 | extends Holiday | |
| 50 | { | |
| 51 | ||
| 52 | @XmlElement(name = "Days") | |
| 53 | protected Integer days; | |
| 54 | @XmlElement(name = "Weekday") | |
| 55 | protected Weekday weekday; | |
| 56 | @XmlElement(name = "When", required = true) | |
| 57 | protected When when; | |
| 58 | @XmlElement(name = "Date", required = true) | |
| 59 | protected Fixed date; | |
| 60 | ||
| 61 | /** | |
| 62 | * Gets the value of the days property. | |
| 63 | * | |
| 64 | * @return | |
| 65 | * possible object is | |
| 66 | * {@link Integer } | |
| 67 | * | |
| 68 | */ | |
| 69 | public Integer getDays() { | |
| 70 | 16 | return days; |
| 71 | } | |
| 72 | ||
| 73 | /** | |
| 74 | * Sets the value of the days property. | |
| 75 | * | |
| 76 | * @param value | |
| 77 | * allowed object is | |
| 78 | * {@link Integer } | |
| 79 | * | |
| 80 | */ | |
| 81 | public void setDays(Integer value) { | |
| 82 | 1 | this.days = value; |
| 83 | 1 | } |
| 84 | ||
| 85 | /** | |
| 86 | * Gets the value of the weekday property. | |
| 87 | * | |
| 88 | * @return | |
| 89 | * possible object is | |
| 90 | * {@link Weekday } | |
| 91 | * | |
| 92 | */ | |
| 93 | public Weekday getWeekday() { | |
| 94 | 26 | return weekday; |
| 95 | } | |
| 96 | ||
| 97 | /** | |
| 98 | * Sets the value of the weekday property. | |
| 99 | * | |
| 100 | * @param value | |
| 101 | * allowed object is | |
| 102 | * {@link Weekday } | |
| 103 | * | |
| 104 | */ | |
| 105 | public void setWeekday(Weekday value) { | |
| 106 | 1 | this.weekday = value; |
| 107 | 1 | } |
| 108 | ||
| 109 | /** | |
| 110 | * Gets the value of the when property. | |
| 111 | * | |
| 112 | * @return | |
| 113 | * possible object is | |
| 114 | * {@link When } | |
| 115 | * | |
| 116 | */ | |
| 117 | public When getWhen() { | |
| 118 | 17 | return when; |
| 119 | } | |
| 120 | ||
| 121 | /** | |
| 122 | * Sets the value of the when property. | |
| 123 | * | |
| 124 | * @param value | |
| 125 | * allowed object is | |
| 126 | * {@link When } | |
| 127 | * | |
| 128 | */ | |
| 129 | public void setWhen(When value) { | |
| 130 | 2 | this.when = value; |
| 131 | 2 | } |
| 132 | ||
| 133 | /** | |
| 134 | * Gets the value of the date property. | |
| 135 | * | |
| 136 | * @return | |
| 137 | * possible object is | |
| 138 | * {@link Fixed } | |
| 139 | * | |
| 140 | */ | |
| 141 | public Fixed getDate() { | |
| 142 | 17 | return date; |
| 143 | } | |
| 144 | ||
| 145 | /** | |
| 146 | * Sets the value of the date property. | |
| 147 | * | |
| 148 | * @param value | |
| 149 | * allowed object is | |
| 150 | * {@link Fixed } | |
| 151 | * | |
| 152 | */ | |
| 153 | public void setDate(Fixed value) { | |
| 154 | 2 | this.date = value; |
| 155 | 2 | } |
| 156 | ||
| 157 | } |