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