| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HebrewHoliday |
|
| 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 HebrewHoliday complex type. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="HebrewHoliday"> | |
| 24 | * <complexContent> | |
| 25 | * <extension base="{http://www.example.org/Holiday}Holiday"> | |
| 26 | * <attribute name="type" type="{http://www.example.org/Holiday}HebrewHolidayType" /> | |
| 27 | * </extension> | |
| 28 | * </complexContent> | |
| 29 | * </complexType> | |
| 30 | * </pre> | |
| 31 | * | |
| 32 | * | |
| 33 | */ | |
| 34 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 35 | @XmlType(name = "HebrewHoliday") | |
| 36 | 0 | public class HebrewHoliday |
| 37 | extends Holiday | |
| 38 | { | |
| 39 | ||
| 40 | @XmlAttribute(name = "type") | |
| 41 | protected String type; | |
| 42 | ||
| 43 | /** | |
| 44 | * Gets the value of the type property. | |
| 45 | * | |
| 46 | * @return | |
| 47 | * possible object is | |
| 48 | * {@link String } | |
| 49 | * | |
| 50 | */ | |
| 51 | public String getType() { | |
| 52 | 0 | return type; |
| 53 | } | |
| 54 | ||
| 55 | /** | |
| 56 | * Sets the value of the type property. | |
| 57 | * | |
| 58 | * @param value | |
| 59 | * allowed object is | |
| 60 | * {@link String } | |
| 61 | * | |
| 62 | */ | |
| 63 | public void setType(String value) { | |
| 64 | 0 | this.type = value; |
| 65 | 0 | } |
| 66 | ||
| 67 | } |