Clover Coverage Report - Kuali Student 1.1.0-SNAPSHOT (Aggregated)
Coverage timestamp: Tue Feb 15 2011 04:04:07 EST
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
4   71   4   1
0   27   1   4
4     1  
1    
 
  UpdateValue       Line # 33 4 0% 4 0 100% 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    package org.kuali.student.common_test_tester.support.jaxws;
17   
18    import javax.xml.bind.annotation.XmlAccessType;
19    import javax.xml.bind.annotation.XmlAccessorType;
20    import javax.xml.bind.annotation.XmlElement;
21    import javax.xml.bind.annotation.XmlRootElement;
22    import javax.xml.bind.annotation.XmlType;
23   
24    /**
25    * This class was generated by the CXF 2.0.4-incubator Tue Apr 15 10:46:55 EDT
26    * 2008 Generated source version: 2.0.4-incubator
27    *
28    */
29   
30    @XmlRootElement(name = "updateValue", namespace = "http://student.kuali.org/poc/wsdl/test/my")
31    @XmlAccessorType(XmlAccessType.FIELD)
32    @XmlType(name = "updateValue", namespace = "http://student.kuali.org/poc/wsdl/test/my")
 
33    public class UpdateValue {
34   
35    @XmlElement(name = "arg0")
36    private java.lang.String arg0;
37   
38    @XmlElement(name = "arg1")
39    private java.lang.String arg1;
40   
41    /**
42    * @return the arg0
43    */
 
44  1 toggle public java.lang.String getArg0() {
45  1 return arg0;
46    }
47   
48    /**
49    * @param arg0
50    * the arg0 to set
51    */
 
52  1 toggle public void setArg0(java.lang.String arg0) {
53  1 this.arg0 = arg0;
54    }
55   
56    /**
57    * @return the arg1
58    */
 
59  1 toggle public java.lang.String getArg1() {
60  1 return arg1;
61    }
62   
63    /**
64    * @param arg1
65    * the arg1 to set
66    */
 
67  1 toggle public void setArg1(java.lang.String arg1) {
68  1 this.arg1 = arg1;
69    }
70   
71    }