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