1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.messagebuilder.booleanmessage.ast; |
17 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
18 |
|
public class BooleanFunctionResult { |
19 |
|
private String booleanFunction; |
20 |
|
private Boolean result; |
21 |
|
private String message; |
22 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
23 |
0
|
public BooleanFunctionResult(String booleanFunction, Boolean result, String message) {... |
24 |
0
|
this.result = result; |
25 |
0
|
this.message = message; |
26 |
0
|
this.booleanFunction = booleanFunction; |
27 |
|
} |
28 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public Boolean getResult() {... |
30 |
0
|
return result; |
31 |
|
} |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
public String getMessage() {... |
34 |
0
|
return message; |
35 |
|
} |
36 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
public String getBooleanFunction() {... |
38 |
0
|
return booleanFunction; |
39 |
|
} |
40 |
|
|
41 |
|
} |