| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ChristianHoliday |
|
| 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.XmlType; | |
| 15 | ||
| 16 | ||
| 17 | /** | |
| 18 | * <p>Java class for ChristianHoliday complex type. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="ChristianHoliday"> | |
| 24 | * <complexContent> | |
| 25 | * <extension base="{http://www.example.org/Holiday}MoveableHoliday"> | |
| 26 | * <attribute name="type" type="{http://www.example.org/Holiday}ChristianHolidayType" /> | |
| 27 | * <attribute name="chronology" type="{http://www.example.org/Holiday}ChronologyType" /> | |
| 28 | * </extension> | |
| 29 | * </complexContent> | |
| 30 | * </complexType> | |
| 31 | * </pre> | |
| 32 | * | |
| 33 | * | |
| 34 | */ | |
| 35 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 36 | @XmlType(name = "ChristianHoliday") | |
| 37 | 371 | public class ChristianHoliday |
| 38 | extends MoveableHoliday | |
| 39 | { | |
| 40 | ||
| 41 | @XmlAttribute(name = "type") | |
| 42 | protected ChristianHolidayType type; | |
| 43 | @XmlAttribute(name = "chronology") | |
| 44 | protected ChronologyType chronology; | |
| 45 | ||
| 46 | /** | |
| 47 | * Gets the value of the type property. | |
| 48 | * | |
| 49 | * @return | |
| 50 | * possible object is | |
| 51 | * {@link ChristianHolidayType } | |
| 52 | * | |
| 53 | */ | |
| 54 | public ChristianHolidayType getType() { | |
| 55 | 640 | return type; |
| 56 | } | |
| 57 | ||
| 58 | /** | |
| 59 | * Sets the value of the type property. | |
| 60 | * | |
| 61 | * @param value | |
| 62 | * allowed object is | |
| 63 | * {@link ChristianHolidayType } | |
| 64 | * | |
| 65 | */ | |
| 66 | public void setType(ChristianHolidayType value) { | |
| 67 | 9 | this.type = value; |
| 68 | 9 | } |
| 69 | ||
| 70 | /** | |
| 71 | * Gets the value of the chronology property. | |
| 72 | * | |
| 73 | * @return | |
| 74 | * possible object is | |
| 75 | * {@link ChronologyType } | |
| 76 | * | |
| 77 | */ | |
| 78 | public ChronologyType getChronology() { | |
| 79 | 320 | return chronology; |
| 80 | } | |
| 81 | ||
| 82 | /** | |
| 83 | * Sets the value of the chronology property. | |
| 84 | * | |
| 85 | * @param value | |
| 86 | * allowed object is | |
| 87 | * {@link ChronologyType } | |
| 88 | * | |
| 89 | */ | |
| 90 | public void setChronology(ChronologyType value) { | |
| 91 | 0 | this.chronology = value; |
| 92 | 0 | } |
| 93 | ||
| 94 | } |