1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
package org.kuali.rice.kns.datadictionary.control; |
18 |
|
|
19 |
|
import org.kuali.rice.kns.datadictionary.exception.CompletionException; |
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 2 |
Complexity Density: 0.5 |
|
24 |
|
public abstract class MultivalueControlDefinitionBase extends ControlDefinitionBase { |
25 |
|
private static final long serialVersionUID = -9164657952021540261L; |
26 |
|
|
27 |
|
|
28 |
|
@see |
29 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
30 |
0
|
public void completeValidation(Class rootBusinessObjectClass, Class otherBusinessObjectClass) {... |
31 |
0
|
super.completeValidation(rootBusinessObjectClass, otherBusinessObjectClass); |
32 |
|
|
33 |
0
|
String valuesFinder = getValuesFinderClass(); |
34 |
0
|
if (valuesFinder == null) { |
35 |
0
|
throw new CompletionException("error validating " + rootBusinessObjectClass.getName() + " control: keyValuesFinder was never set (" + "" + ")"); |
36 |
|
} |
37 |
|
} |
38 |
|
} |