| 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) |
|
|
|
| 75% |
Uncovered Elements: 6 (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 |
18
|
public UILookupData getInitialLookup() {... |
| 21 |
18
|
return initialLookup; |
| 22 |
|
} |
| 23 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 24 |
30
|
public void setInitialLookup(UILookupData initialLookup) {... |
| 25 |
30
|
this.initialLookup = initialLookup; |
| 26 |
|
} |
| 27 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 28 |
10
|
public List<UILookupData> getAdditionalLookups() {... |
| 29 |
10
|
return additionalLookups; |
| 30 |
|
} |
| 31 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 32 |
12
|
public void setAdditionalLookups(List<UILookupData> additionalLookups) {... |
| 33 |
12
|
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 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 40 |
4
|
public void setName(String name) {... |
| 41 |
4
|
this.name = name; |
| 42 |
|
} |
| 43 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 44 |
66
|
public String getPath() {... |
| 45 |
66
|
return path; |
| 46 |
|
} |
| 47 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 48 |
32
|
public void setPath(String path) {... |
| 49 |
32
|
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 |
21
|
public String getType () {... |
| 61 |
21
|
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 |
|
} |