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