| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.contract.model; |
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
@author |
| 21 |
|
|
|
|
|
| 0% |
Uncovered Elements: 36 (36) |
Complexity: 18 |
Complexity Density: 1 |
|
| 22 |
|
public class Project |
| 23 |
|
{ |
| 24 |
|
|
| 25 |
|
private String key; |
| 26 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 27 |
0
|
public String getKey ()... |
| 28 |
|
{ |
| 29 |
0
|
return key; |
| 30 |
|
} |
| 31 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 32 |
0
|
public void setKey (String key)... |
| 33 |
|
{ |
| 34 |
0
|
this.key = key; |
| 35 |
|
} |
| 36 |
|
|
| 37 |
|
private String type; |
| 38 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 39 |
0
|
public String getType ()... |
| 40 |
|
{ |
| 41 |
0
|
return type; |
| 42 |
|
} |
| 43 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 44 |
0
|
public void setType (String type)... |
| 45 |
|
{ |
| 46 |
0
|
this.type = type; |
| 47 |
|
} |
| 48 |
|
|
| 49 |
|
private String name; |
| 50 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 51 |
0
|
public String getName ()... |
| 52 |
|
{ |
| 53 |
0
|
return name; |
| 54 |
|
} |
| 55 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 56 |
0
|
public void setName (String name)... |
| 57 |
|
{ |
| 58 |
0
|
this.name = name; |
| 59 |
|
} |
| 60 |
|
|
| 61 |
|
private String description; |
| 62 |
|
|
| 63 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 64 |
0
|
public String getDescription ()... |
| 65 |
|
{ |
| 66 |
0
|
return description; |
| 67 |
|
} |
| 68 |
|
|
| 69 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 70 |
0
|
public void setDescription (String description)... |
| 71 |
|
{ |
| 72 |
0
|
this.description = description; |
| 73 |
|
} |
| 74 |
|
|
| 75 |
|
private String directory; |
| 76 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 77 |
0
|
public String getDirectory ()... |
| 78 |
|
{ |
| 79 |
0
|
return directory; |
| 80 |
|
} |
| 81 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 82 |
0
|
public void setDirectory (String directory)... |
| 83 |
|
{ |
| 84 |
0
|
this.directory = directory; |
| 85 |
|
} |
| 86 |
|
|
| 87 |
|
|
| 88 |
|
private String javaDirectory; |
| 89 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 90 |
0
|
public String getJavaDirectory ()... |
| 91 |
|
{ |
| 92 |
0
|
return javaDirectory; |
| 93 |
|
} |
| 94 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 95 |
0
|
public void setJavaDirectory (String javaDirectory)... |
| 96 |
|
{ |
| 97 |
0
|
this.javaDirectory = javaDirectory; |
| 98 |
|
} |
| 99 |
|
|
| 100 |
|
private String resourcesDirectory; |
| 101 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 102 |
0
|
public String getResourcesDirectory ()... |
| 103 |
|
{ |
| 104 |
0
|
return resourcesDirectory; |
| 105 |
|
} |
| 106 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 107 |
0
|
public void setResourcesDirectory (String resourcesDirectory)... |
| 108 |
|
{ |
| 109 |
0
|
this.resourcesDirectory = resourcesDirectory; |
| 110 |
|
} |
| 111 |
|
|
| 112 |
|
private String status; |
| 113 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 114 |
0
|
public String getStatus ()... |
| 115 |
|
{ |
| 116 |
0
|
return status; |
| 117 |
|
} |
| 118 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 119 |
0
|
public void setStatus (String status)... |
| 120 |
|
{ |
| 121 |
0
|
this.status = status; |
| 122 |
|
} |
| 123 |
|
|
| 124 |
|
private String comments; |
| 125 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 126 |
0
|
public String getComments ()... |
| 127 |
|
{ |
| 128 |
0
|
return comments; |
| 129 |
|
} |
| 130 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 131 |
0
|
public void setComments (String comments)... |
| 132 |
|
{ |
| 133 |
0
|
this.comments = comments; |
| 134 |
|
} |
| 135 |
|
|
| 136 |
|
|
| 137 |
|
} |