1 |
|
package org.kuali.student.lum.common.client.configuration; |
2 |
|
|
3 |
|
import org.kuali.student.common.ui.client.configurable.mvc.Configurer; |
4 |
|
import org.kuali.student.common.ui.client.mvc.DataModel; |
5 |
|
import org.kuali.student.common.ui.client.widgets.field.layout.element.MessageKeyInfo; |
6 |
|
|
7 |
|
|
8 |
|
@link |
9 |
|
|
10 |
|
@author |
11 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 6 |
Complexity Density: 1.5 |
|
12 |
|
public abstract class AbstractConfiguration implements Configuration { |
13 |
|
|
14 |
|
protected Configurer configurer; |
15 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
16 |
0
|
public void setConfigurer(Configurer configurer) {... |
17 |
0
|
this.configurer = configurer; |
18 |
|
} |
19 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
20 |
0
|
@Override... |
21 |
|
public void applyRestrictions() { |
22 |
|
} |
23 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
24 |
0
|
@Override... |
25 |
|
public boolean checkPermission(DataModel model) { |
26 |
0
|
return false; |
27 |
|
} |
28 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
29 |
0
|
@Override... |
30 |
|
public void removeRestrictions() { |
31 |
|
|
32 |
|
} |
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
@param |
39 |
|
@return |
40 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0
|
public MessageKeyInfo generateMessageInfo(String labelKey) {... |
42 |
0
|
return this.configurer.generateMessageInfo(labelKey); |
43 |
|
} |
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
@param |
48 |
|
@return |
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public String getLabel(String labelKey) {... |
51 |
0
|
return this.configurer.getLabel(labelKey); |
52 |
|
} |
53 |
|
} |