Clover Coverage Report - KS Contract Documentation Generator 0.0.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
12   88   12   1
0   45   1   12
12     1  
1    
 
  ServiceMethodRow       Line # 22 12 0% 12 24 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2010 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.osedu.org/licenses/ECL-2.0
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16    package org.kuali.student.contract.model;
17   
18    /**
19    *
20    * @author nwright
21    */
 
22    public class ServiceMethodRow {
23   
24    private int rowNumber;
25   
 
26  0 toggle public int getRowNumber() {
27  0 return rowNumber;
28    }
29   
 
30  0 toggle public void setRowNumber(int rowNumber) {
31  0 this.rowNumber = rowNumber;
32    }
33    private String service;
34   
 
35  0 toggle public String getService() {
36  0 return service;
37    }
38   
 
39  0 toggle public void setService(String service) {
40  0 this.service = service;
41    }
42    private String key;
43   
 
44  0 toggle public String getKey() {
45  0 return key;
46    }
47   
 
48  0 toggle public void setKey(String key) {
49  0 this.key = key;
50    }
51    private String shortName;
52   
 
53  0 toggle public String getShortName() {
54  0 return shortName;
55    }
56   
 
57  0 toggle public void setShortName(String shortName) {
58  0 this.shortName = shortName;
59    }
60    protected String longName;
61   
62    /**
63    * Get the value of longName
64    *
65    * @return the value of longName
66    */
 
67  0 toggle public String getLongName() {
68  0 return longName;
69    }
70   
71    /**
72    * Set the value of longName
73    *
74    * @param longName new value of longName
75    */
 
76  0 toggle public void setLongName(String longName) {
77  0 this.longName = longName;
78    }
79    private String description;
80   
 
81  0 toggle public String getDescription() {
82  0 return description;
83    }
84   
 
85  0 toggle public void setDescription(String description) {
86  0 this.description = description;
87    }
88    }