Coverage Report - org.kuali.student.core.organization.dynamic.Section
 
Classes in this File Line Coverage Branch Coverage Complexity
Section
0%
0/7
N/A
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.XmlType;
 30  
 
 31  
 
 32  
 /**
 33  
  * <p>Java class for section complex type.
 34  
  * 
 35  
  * <p>The following schema fragment specifies the expected content contained within this class.
 36  
  * 
 37  
  * <pre>
 38  
  * &lt;complexType name="section">
 39  
  *   &lt;complexContent>
 40  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 41  
  *       &lt;attribute name="sectionName" type="{http://www.w3.org/2001/XMLSchema}string" />
 42  
  *       &lt;attribute name="enum" type="{http://www.w3.org/2001/XMLSchema}string" />
 43  
  *     &lt;/restriction>
 44  
  *   &lt;/complexContent>
 45  
  * &lt;/complexType>
 46  
  * </pre>
 47  
  * 
 48  
  * 
 49  
  */
 50  
 @XmlAccessorType(XmlAccessType.FIELD)
 51  
 @XmlType(name = "section")
 52  0
 public class Section {
 53  
 
 54  
     @XmlAttribute
 55  
     protected String sectionName;
 56  
     @XmlAttribute(name = "enum")
 57  
     protected String _enum;
 58  
 
 59  
     /**
 60  
      * Gets the value of the sectionName property.
 61  
      * 
 62  
      * @return
 63  
      *     possible object is
 64  
      *     {@link String }
 65  
      *     
 66  
      */
 67  
     public String getSectionName() {
 68  0
         return sectionName;
 69  
     }
 70  
 
 71  
     /**
 72  
      * Sets the value of the sectionName property.
 73  
      * 
 74  
      * @param value
 75  
      *     allowed object is
 76  
      *     {@link String }
 77  
      *     
 78  
      */
 79  
     public void setSectionName(String value) {
 80  0
         this.sectionName = value;
 81  0
     }
 82  
 
 83  
     /**
 84  
      * Gets the value of the enum property.
 85  
      * 
 86  
      * @return
 87  
      *     possible object is
 88  
      *     {@link String }
 89  
      *     
 90  
      */
 91  
     public String getEnum() {
 92  0
         return _enum;
 93  
     }
 94  
 
 95  
     /**
 96  
      * Sets the value of the enum property.
 97  
      * 
 98  
      * @param value
 99  
      *     allowed object is
 100  
      *     {@link String }
 101  
      *     
 102  
      */
 103  
     public void setEnum(String value) {
 104  0
         this._enum = value;
 105  0
     }
 106  
 
 107  
 }