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
18   105   18   1
0   66   1   18
18     1  
1    
 
  Project       Line # 22 18 0% 18 36 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 Project {
23   
24    private String key;
25   
 
26  0 toggle public String getKey() {
27  0 return key;
28    }
29   
 
30  0 toggle public void setKey(String key) {
31  0 this.key = key;
32    }
33    private String type;
34   
 
35  0 toggle public String getType() {
36  0 return type;
37    }
38   
 
39  0 toggle public void setType(String type) {
40  0 this.type = type;
41    }
42    private String name;
43   
 
44  0 toggle public String getName() {
45  0 return name;
46    }
47   
 
48  0 toggle public void setName(String name) {
49  0 this.name = name;
50    }
51    private String description;
52   
 
53  0 toggle public String getDescription() {
54  0 return description;
55    }
56   
 
57  0 toggle public void setDescription(String description) {
58  0 this.description = description;
59    }
60    private String directory;
61   
 
62  0 toggle public String getDirectory() {
63  0 return directory;
64    }
65   
 
66  0 toggle public void setDirectory(String directory) {
67  0 this.directory = directory;
68    }
69    private String javaDirectory;
70   
 
71  0 toggle public String getJavaDirectory() {
72  0 return javaDirectory;
73    }
74   
 
75  0 toggle public void setJavaDirectory(String javaDirectory) {
76  0 this.javaDirectory = javaDirectory;
77    }
78    private String resourcesDirectory;
79   
 
80  0 toggle public String getResourcesDirectory() {
81  0 return resourcesDirectory;
82    }
83   
 
84  0 toggle public void setResourcesDirectory(String resourcesDirectory) {
85  0 this.resourcesDirectory = resourcesDirectory;
86    }
87    private String status;
88   
 
89  0 toggle public String getStatus() {
90  0 return status;
91    }
92   
 
93  0 toggle public void setStatus(String status) {
94  0 this.status = status;
95    }
96    private String comments;
97   
 
98  0 toggle public String getComments() {
99  0 return comments;
100    }
101   
 
102  0 toggle public void setComments(String comments) {
103  0 this.comments = comments;
104    }
105    }