1 |
|
package org.kuali.student.common.assembly.data; |
2 |
|
|
3 |
|
import java.util.List; |
4 |
|
|
5 |
|
import javax.xml.bind.annotation.XmlAccessType; |
6 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
7 |
|
|
8 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 58.3% |
Uncovered Elements: 10 (24) |
Complexity: 12 |
Complexity Density: 1 |
|
9 |
|
public class UILookupConfig{ |
10 |
|
|
11 |
|
private static final long serialVersionUID = 1L; |
12 |
|
|
13 |
|
protected UILookupData initialLookup; |
14 |
|
protected List<UILookupData> additionalLookups; |
15 |
|
private String name; |
16 |
|
private String path; |
17 |
|
private String dataType; |
18 |
|
private String type; |
19 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
20 |
10
|
public UILookupData getInitialLookup() {... |
21 |
10
|
return initialLookup; |
22 |
|
} |
23 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
24 |
4
|
public void setInitialLookup(UILookupData initialLookup) {... |
25 |
4
|
this.initialLookup = initialLookup; |
26 |
|
} |
27 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
28 |
5
|
public List<UILookupData> getAdditionalLookups() {... |
29 |
5
|
return additionalLookups; |
30 |
|
} |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public void setAdditionalLookups(List<UILookupData> additionalLookups) {... |
33 |
0
|
this.additionalLookups = additionalLookups; |
34 |
|
} |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public String getName() {... |
37 |
0
|
return name; |
38 |
|
} |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
40 |
0
|
public void setName(String name) {... |
41 |
0
|
this.name = name; |
42 |
|
} |
43 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
25
|
public String getPath() {... |
45 |
25
|
return path; |
46 |
|
} |
47 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
4
|
public void setPath(String path) {... |
49 |
4
|
this.path = path; |
50 |
|
} |
51 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
0
|
public String getDataType() {... |
53 |
0
|
return dataType; |
54 |
|
} |
55 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
0
|
public void setDataType(String dataType) {... |
57 |
0
|
this.dataType = dataType; |
58 |
|
} |
59 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
60 |
14
|
public String getType () {... |
61 |
14
|
return type; |
62 |
|
} |
63 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
64 |
4
|
public void setType (String type) {... |
65 |
4
|
this.type = type; |
66 |
|
} |
67 |
|
} |