Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SectionConfig |
|
| 2.0;2 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | // | |
17 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 | |
18 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
19 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
20 | // Generated on: 2010.01.08 at 02:11:47 PM EST | |
21 | // | |
22 | ||
23 | ||
24 | package org.kuali.student.core.organization.dynamic; | |
25 | ||
26 | import java.util.ArrayList; | |
27 | import java.util.List; | |
28 | ||
29 | import javax.xml.bind.annotation.XmlAccessType; | |
30 | import javax.xml.bind.annotation.XmlAccessorType; | |
31 | import javax.xml.bind.annotation.XmlElement; | |
32 | import javax.xml.bind.annotation.XmlType; | |
33 | ||
34 | ||
35 | /** | |
36 | * <p>Java class for sectionConfig complex type. | |
37 | * | |
38 | * <p>The following schema fragment specifies the expected content contained within this class. | |
39 | * | |
40 | * <pre> | |
41 | * <complexType name="sectionConfig"> | |
42 | * <complexContent> | |
43 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
44 | * <sequence> | |
45 | * <element name="sectionView" type="{}sectionView" maxOccurs="unbounded"/> | |
46 | * </sequence> | |
47 | * </restriction> | |
48 | * </complexContent> | |
49 | * </complexType> | |
50 | * </pre> | |
51 | * | |
52 | * | |
53 | */ | |
54 | @XmlAccessorType(XmlAccessType.FIELD) | |
55 | @XmlType(name = "sectionConfig", propOrder = { | |
56 | "sectionView" | |
57 | }) | |
58 | 0 | public class SectionConfig { |
59 | ||
60 | @XmlElement(required = true) | |
61 | protected List<SectionView> sectionView; | |
62 | ||
63 | /** | |
64 | * Gets the value of the sectionView property. | |
65 | * | |
66 | * <p> | |
67 | * This accessor method returns a reference to the live list, | |
68 | * not a snapshot. Therefore any modification you make to the | |
69 | * returned list will be present inside the JAXB object. | |
70 | * This is why there is not a <CODE>set</CODE> method for the sectionView property. | |
71 | * | |
72 | * <p> | |
73 | * For example, to add a new item, do as follows: | |
74 | * <pre> | |
75 | * getSectionView().add(newItem); | |
76 | * </pre> | |
77 | * | |
78 | * | |
79 | * <p> | |
80 | * Objects of the following type(s) are allowed in the list | |
81 | * {@link SectionView } | |
82 | * | |
83 | * | |
84 | */ | |
85 | public List<SectionView> getSectionView() { | |
86 | 0 | if (sectionView == null) { |
87 | 0 | sectionView = new ArrayList<SectionView>(); |
88 | } | |
89 | 0 | return this.sectionView; |
90 | } | |
91 | ||
92 | } |