| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MoveableHoliday |
|
| 2.0;2 |
| 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 java.util.ArrayList; | |
| 12 | import java.util.List; | |
| 13 | import javax.xml.bind.annotation.XmlAccessType; | |
| 14 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 15 | import javax.xml.bind.annotation.XmlElement; | |
| 16 | import javax.xml.bind.annotation.XmlSeeAlso; | |
| 17 | import javax.xml.bind.annotation.XmlType; | |
| 18 | ||
| 19 | ||
| 20 | /** | |
| 21 | * <p>Java class for MoveableHoliday complex type. | |
| 22 | * | |
| 23 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 24 | * | |
| 25 | * <pre> | |
| 26 | * <complexType name="MoveableHoliday"> | |
| 27 | * <complexContent> | |
| 28 | * <extension base="{http://www.example.org/Holiday}Holiday"> | |
| 29 | * <sequence> | |
| 30 | * <element name="MovingCondition" type="{http://www.example.org/Holiday}MovingCondition" maxOccurs="unbounded" minOccurs="0"/> | |
| 31 | * </sequence> | |
| 32 | * </extension> | |
| 33 | * </complexContent> | |
| 34 | * </complexType> | |
| 35 | * </pre> | |
| 36 | * | |
| 37 | * | |
| 38 | */ | |
| 39 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 40 | @XmlType(name = "MoveableHoliday", propOrder = { | |
| 41 | "movingCondition" | |
| 42 | }) | |
| 43 | @XmlSeeAlso({ | |
| 44 | Fixed.class, | |
| 45 | ChristianHoliday.class | |
| 46 | }) | |
| 47 | 1998 | public abstract class MoveableHoliday |
| 48 | extends Holiday | |
| 49 | { | |
| 50 | ||
| 51 | @XmlElement(name = "MovingCondition") | |
| 52 | protected List<MovingCondition> movingCondition; | |
| 53 | ||
| 54 | /** | |
| 55 | * Gets the value of the movingCondition property. | |
| 56 | * | |
| 57 | * <p> | |
| 58 | * This accessor method returns a reference to the live list, | |
| 59 | * not a snapshot. Therefore any modification you make to the | |
| 60 | * returned list will be present inside the JAXB object. | |
| 61 | * This is why there is not a <CODE>set</CODE> method for the movingCondition property. | |
| 62 | * | |
| 63 | * <p> | |
| 64 | * For example, to add a new item, do as follows: | |
| 65 | * <pre> | |
| 66 | * getMovingCondition().add(newItem); | |
| 67 | * </pre> | |
| 68 | * | |
| 69 | * | |
| 70 | * <p> | |
| 71 | * Objects of the following type(s) are allowed in the list | |
| 72 | * {@link MovingCondition } | |
| 73 | * | |
| 74 | * | |
| 75 | */ | |
| 76 | public List<MovingCondition> getMovingCondition() { | |
| 77 | 2413 | if (movingCondition == null) { |
| 78 | 718 | movingCondition = new ArrayList<MovingCondition>(); |
| 79 | } | |
| 80 | 2413 | return this.movingCondition; |
| 81 | } | |
| 82 | ||
| 83 | } |