| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SectionView |
|
| 1.0;1 |
| 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 javax.xml.bind.annotation.XmlAccessType; | |
| 27 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 28 | import javax.xml.bind.annotation.XmlAttribute; | |
| 29 | import javax.xml.bind.annotation.XmlElement; | |
| 30 | import javax.xml.bind.annotation.XmlType; | |
| 31 | ||
| 32 | ||
| 33 | /** | |
| 34 | * <p>Java class for sectionView complex type. | |
| 35 | * | |
| 36 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 37 | * | |
| 38 | * <pre> | |
| 39 | * <complexType name="sectionView"> | |
| 40 | * <complexContent> | |
| 41 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 42 | * <sequence> | |
| 43 | * <element name="section" type="{}section"/> | |
| 44 | * <element name="fields" type="{}fields"/> | |
| 45 | * </sequence> | |
| 46 | * <attribute name="viewName" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| 47 | * <attribute name="tab" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| 48 | * <attribute name="menu" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| 49 | * </restriction> | |
| 50 | * </complexContent> | |
| 51 | * </complexType> | |
| 52 | * </pre> | |
| 53 | * | |
| 54 | * | |
| 55 | */ | |
| 56 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 57 | @XmlType(name = "sectionView", propOrder = { | |
| 58 | "section", | |
| 59 | "fields" | |
| 60 | }) | |
| 61 | 0 | public class SectionView { |
| 62 | ||
| 63 | @XmlElement(required = true) | |
| 64 | protected Section section; | |
| 65 | @XmlElement(required = true) | |
| 66 | protected Fields fields; | |
| 67 | @XmlAttribute | |
| 68 | protected String viewName; | |
| 69 | @XmlAttribute | |
| 70 | protected String tab; | |
| 71 | @XmlAttribute | |
| 72 | protected String menu; | |
| 73 | ||
| 74 | /** | |
| 75 | * Gets the value of the section property. | |
| 76 | * | |
| 77 | * @return | |
| 78 | * possible object is | |
| 79 | * {@link Section } | |
| 80 | * | |
| 81 | */ | |
| 82 | public Section getSection() { | |
| 83 | 0 | return section; |
| 84 | } | |
| 85 | ||
| 86 | /** | |
| 87 | * Sets the value of the section property. | |
| 88 | * | |
| 89 | * @param value | |
| 90 | * allowed object is | |
| 91 | * {@link Section } | |
| 92 | * | |
| 93 | */ | |
| 94 | public void setSection(Section value) { | |
| 95 | 0 | this.section = value; |
| 96 | 0 | } |
| 97 | ||
| 98 | /** | |
| 99 | * Gets the value of the fields property. | |
| 100 | * | |
| 101 | * @return | |
| 102 | * possible object is | |
| 103 | * {@link Fields } | |
| 104 | * | |
| 105 | */ | |
| 106 | public Fields getFields() { | |
| 107 | 0 | return fields; |
| 108 | } | |
| 109 | ||
| 110 | /** | |
| 111 | * Sets the value of the fields property. | |
| 112 | * | |
| 113 | * @param value | |
| 114 | * allowed object is | |
| 115 | * {@link Fields } | |
| 116 | * | |
| 117 | */ | |
| 118 | public void setFields(Fields value) { | |
| 119 | 0 | this.fields = value; |
| 120 | 0 | } |
| 121 | ||
| 122 | /** | |
| 123 | * Gets the value of the viewName property. | |
| 124 | * | |
| 125 | * @return | |
| 126 | * possible object is | |
| 127 | * {@link String } | |
| 128 | * | |
| 129 | */ | |
| 130 | public String getViewName() { | |
| 131 | 0 | return viewName; |
| 132 | } | |
| 133 | ||
| 134 | /** | |
| 135 | * Sets the value of the viewName property. | |
| 136 | * | |
| 137 | * @param value | |
| 138 | * allowed object is | |
| 139 | * {@link String } | |
| 140 | * | |
| 141 | */ | |
| 142 | public void setViewName(String value) { | |
| 143 | 0 | this.viewName = value; |
| 144 | 0 | } |
| 145 | ||
| 146 | /** | |
| 147 | * Gets the value of the tab property. | |
| 148 | * | |
| 149 | * @return | |
| 150 | * possible object is | |
| 151 | * {@link String } | |
| 152 | * | |
| 153 | */ | |
| 154 | public String getTab() { | |
| 155 | 0 | return tab; |
| 156 | } | |
| 157 | ||
| 158 | /** | |
| 159 | * Sets the value of the tab property. | |
| 160 | * | |
| 161 | * @param value | |
| 162 | * allowed object is | |
| 163 | * {@link String } | |
| 164 | * | |
| 165 | */ | |
| 166 | public void setTab(String value) { | |
| 167 | 0 | this.tab = value; |
| 168 | 0 | } |
| 169 | ||
| 170 | /** | |
| 171 | * Gets the value of the menu property. | |
| 172 | * | |
| 173 | * @return | |
| 174 | * possible object is | |
| 175 | * {@link String } | |
| 176 | * | |
| 177 | */ | |
| 178 | public String getMenu() { | |
| 179 | 0 | return menu; |
| 180 | } | |
| 181 | ||
| 182 | /** | |
| 183 | * Sets the value of the menu property. | |
| 184 | * | |
| 185 | * @param value | |
| 186 | * allowed object is | |
| 187 | * {@link String } | |
| 188 | * | |
| 189 | */ | |
| 190 | public void setMenu(String value) { | |
| 191 | 0 | this.menu = value; |
| 192 | 0 | } |
| 193 | ||
| 194 | } |