io.github.ro4.check.CheckResult   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 50%

Importance

Changes 0
Metric Value
dl 0
loc 14
ccs 2
cts 4
cp 0.5
rs 10
c 0
b 0
f 0
eloc 9
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getTarget() 0 3 1
A CheckResult(String) 0 2 1
A getActualFieldValue(String) 0 3 1
1
package io.github.ro4.check;
2
3
import org.springframework.validation.AbstractBindingResult;
4
5
public class CheckResult extends AbstractBindingResult {
6
7
    public CheckResult(String objectName) {
8 1
        super(objectName);
9 1
    }
10
11
    @Override
12
    public Object getTarget() {
13
        return null;
14
    }
15
16
    @Override
17
    protected Object getActualFieldValue(String field) {
18
        return null;
19
    }
20
}
21