Coverage Report - org.kuali.student.core.organization.dynamic.Field
 
Classes in this File Line Coverage Branch Coverage Complexity
Field
0%
0/10
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 field complex type.
 34  
  * 
 35  
  * <p>The following schema fragment specifies the expected content contained within this class.
 36  
  * 
 37  
  * <pre>
 38  
  * &lt;complexType name="field">
 39  
  *   &lt;complexContent>
 40  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 41  
  *       &lt;attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
 42  
  *       &lt;attribute name="key" type="{http://www.w3.org/2001/XMLSchema}string" />
 43  
  *       &lt;attribute name="widget" type="{http://www.w3.org/2001/XMLSchema}string" />
 44  
  *     &lt;/restriction>
 45  
  *   &lt;/complexContent>
 46  
  * &lt;/complexType>
 47  
  * </pre>
 48  
  * 
 49  
  * 
 50  
  */
 51  
 @XmlAccessorType(XmlAccessType.FIELD)
 52  
 @XmlType(name = "field")
 53  0
 public class Field {
 54  
 
 55  
     @XmlAttribute
 56  
     protected String label;
 57  
     @XmlAttribute
 58  
     protected String key;
 59  
     @XmlAttribute
 60  
     protected String widget;
 61  
 
 62  
     /**
 63  
      * Gets the value of the label property.
 64  
      * 
 65  
      * @return
 66  
      *     possible object is
 67  
      *     {@link String }
 68  
      *     
 69  
      */
 70  
     public String getLabel() {
 71  0
         return label;
 72  
     }
 73  
 
 74  
     /**
 75  
      * Sets the value of the label property.
 76  
      * 
 77  
      * @param value
 78  
      *     allowed object is
 79  
      *     {@link String }
 80  
      *     
 81  
      */
 82  
     public void setLabel(String value) {
 83  0
         this.label = value;
 84  0
     }
 85  
 
 86  
     /**
 87  
      * Gets the value of the key property.
 88  
      * 
 89  
      * @return
 90  
      *     possible object is
 91  
      *     {@link String }
 92  
      *     
 93  
      */
 94  
     public String getKey() {
 95  0
         return key;
 96  
     }
 97  
 
 98  
     /**
 99  
      * Sets the value of the key property.
 100  
      * 
 101  
      * @param value
 102  
      *     allowed object is
 103  
      *     {@link String }
 104  
      *     
 105  
      */
 106  
     public void setKey(String value) {
 107  0
         this.key = value;
 108  0
     }
 109  
 
 110  
     /**
 111  
      * Gets the value of the widget property.
 112  
      * 
 113  
      * @return
 114  
      *     possible object is
 115  
      *     {@link String }
 116  
      *     
 117  
      */
 118  
     public String getWidget() {
 119  0
         return widget;
 120  
     }
 121  
 
 122  
     /**
 123  
      * Sets the value of the widget property.
 124  
      * 
 125  
      * @param value
 126  
      *     allowed object is
 127  
      *     {@link String }
 128  
      *     
 129  
      */
 130  
     public void setWidget(String value) {
 131  0
         this.widget = value;
 132  0
     }
 133  
 
 134  
 }