Coverage Report - org.kuali.student.common.dictionary.old.dto.Context
 
Classes in this File Line Coverage Branch Coverage Complexity
Context
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.0 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: 2008.10.21 at 02:14:18 PM PDT 
 21  
 //
 22  
 
 23  
 
 24  
 package org.kuali.student.common.dictionary.old.dto;
 25  
 
 26  
 import java.io.Serializable;
 27  
 
 28  
 import javax.xml.bind.annotation.XmlAccessType;
 29  
 import javax.xml.bind.annotation.XmlAccessorType;
 30  
 import javax.xml.bind.annotation.XmlAttribute;
 31  
 import javax.xml.bind.annotation.XmlValue;
 32  
 
 33  
 
 34  
 /**
 35  
  * <p>Java class for anonymous complex type.
 36  
  * 
 37  
  * <p>The following schema fragment specifies the expected content contained within this class.
 38  
  * 
 39  
  * <pre>
 40  
  * &lt;complexType>
 41  
  *   &lt;simpleContent>
 42  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 43  
  *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 44  
  *     &lt;/extension>
 45  
  *   &lt;/simpleContent>
 46  
  * &lt;/complexType>
 47  
  * </pre>
 48  
  * 
 49  
  * 
 50  
  */
 51  
 @XmlAccessorType(XmlAccessType.FIELD)
 52  0
 public class Context implements Serializable{
 53  
 
 54  
     private static final long serialVersionUID = 1L;
 55  
     
 56  
     @XmlValue
 57  
     protected String value;
 58  
     @XmlAttribute(required = true)
 59  
     protected String type;
 60  
 
 61  
     /**
 62  
      * Gets the value of the value property.
 63  
      * 
 64  
      * @return
 65  
      *     possible object is
 66  
      *     {@link String }
 67  
      *     
 68  
      */
 69  
     public String getValue() {
 70  0
         return value;
 71  
     }
 72  
 
 73  
     /**
 74  
      * Sets the value of the value property.
 75  
      * 
 76  
      * @param value
 77  
      *     allowed object is
 78  
      *     {@link String }
 79  
      *     
 80  
      */
 81  
     public void setValue(String value) {
 82  0
         this.value = value;
 83  0
     }
 84  
 
 85  
     /**
 86  
      * Gets the value of the type property.
 87  
      * 
 88  
      * @return
 89  
      *     possible object is
 90  
      *     {@link String }
 91  
      *     
 92  
      */
 93  
     public String getType() {
 94  0
         return type;
 95  
     }
 96  
 
 97  
     /**
 98  
      * Sets the value of the type property.
 99  
      * 
 100  
      * @param value
 101  
      *     allowed object is
 102  
      *     {@link String }
 103  
      *     
 104  
      */
 105  
     public void setType(String value) {
 106  0
         this.type = value;
 107  0
     }
 108  
 
 109  
 }