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