1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.qedeq.kernel.bo.service.basis; |
17 |
|
|
18 |
|
import org.qedeq.kernel.se.common.SourceFileExceptionList; |
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
@author |
24 |
|
|
|
|
| 83.3% |
Uncovered Elements: 3 (18) |
Complexity: 8 |
Complexity Density: 0.8 |
|
25 |
|
public class ModuleServicePluginResults { |
26 |
|
|
27 |
|
|
28 |
|
private SourceFileExceptionList errors; |
29 |
|
|
30 |
|
|
31 |
|
private SourceFileExceptionList warnings; |
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
36 |
111
|
public ModuleServicePluginResults() {... |
37 |
111
|
errors = new SourceFileExceptionList(); |
38 |
111
|
warnings = new SourceFileExceptionList(); |
39 |
|
} |
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
44 |
0
|
public void clear() {... |
45 |
0
|
errors.clear(); |
46 |
0
|
warnings.clear(); |
47 |
|
} |
48 |
|
|
49 |
|
|
50 |
|
|
51 |
|
|
52 |
|
@return |
53 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
301
|
public SourceFileExceptionList getErrors() {... |
55 |
301
|
return errors; |
56 |
|
} |
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
@param |
62 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
63 |
113
|
public void addErrors(final SourceFileExceptionList errors) {... |
64 |
113
|
this.errors.add(errors); |
65 |
|
} |
66 |
|
|
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
@return |
71 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
72 |
295
|
public SourceFileExceptionList getWarnings() {... |
73 |
295
|
return warnings; |
74 |
|
} |
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
@param |
80 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
81 |
113
|
public void addWarnings(final SourceFileExceptionList warnings) {... |
82 |
113
|
this.warnings.add(warnings); |
83 |
|
} |
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
@return |
89 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
90 |
6
|
public boolean hasErrors() {... |
91 |
6
|
return errors.size() > 0; |
92 |
|
} |
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
97 |
|
@return |
98 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
3
|
public boolean hasWarnings() {... |
100 |
3
|
return warnings.size() > 0; |
101 |
|
} |
102 |
|
|
103 |
|
} |