| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RelativeToEasterSunday |
|
| 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 RelativeToEasterSunday complex type. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="RelativeToEasterSunday"> | |
| 24 | * <complexContent> | |
| 25 | * <extension base="{http://www.example.org/Holiday}Holiday"> | |
| 26 | * <sequence> | |
| 27 | * <element name="chronology" type="{http://www.example.org/Holiday}ChronologyType"/> | |
| 28 | * <element name="days" type="{http://www.w3.org/2001/XMLSchema}int"/> | |
| 29 | * </sequence> | |
| 30 | * </extension> | |
| 31 | * </complexContent> | |
| 32 | * </complexType> | |
| 33 | * </pre> | |
| 34 | * | |
| 35 | * | |
| 36 | */ | |
| 37 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 38 | @XmlType(name = "RelativeToEasterSunday", propOrder = { | |
| 39 | "chronology", | |
| 40 | "days" | |
| 41 | }) | |
| 42 | 3 | public class RelativeToEasterSunday |
| 43 | extends Holiday | |
| 44 | { | |
| 45 | ||
| 46 | @XmlElement(required = true) | |
| 47 | protected ChronologyType chronology; | |
| 48 | protected int days; | |
| 49 | ||
| 50 | /** | |
| 51 | * Gets the value of the chronology property. | |
| 52 | * | |
| 53 | * @return | |
| 54 | * possible object is | |
| 55 | * {@link ChronologyType } | |
| 56 | * | |
| 57 | */ | |
| 58 | public ChronologyType getChronology() { | |
| 59 | 3 | return chronology; |
| 60 | } | |
| 61 | ||
| 62 | /** | |
| 63 | * Sets the value of the chronology property. | |
| 64 | * | |
| 65 | * @param value | |
| 66 | * allowed object is | |
| 67 | * {@link ChronologyType } | |
| 68 | * | |
| 69 | */ | |
| 70 | public void setChronology(ChronologyType value) { | |
| 71 | 1 | this.chronology = value; |
| 72 | 1 | } |
| 73 | ||
| 74 | /** | |
| 75 | * Gets the value of the days property. | |
| 76 | * | |
| 77 | */ | |
| 78 | public int getDays() { | |
| 79 | 3 | return days; |
| 80 | } | |
| 81 | ||
| 82 | /** | |
| 83 | * Sets the value of the days property. | |
| 84 | * | |
| 85 | */ | |
| 86 | public void setDays(int value) { | |
| 87 | 3 | this.days = value; |
| 88 | 3 | } |
| 89 | ||
| 90 | } |