1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.dictionary.old.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
import java.util.List; |
20 |
|
|
21 |
|
import javax.xml.bind.annotation.XmlAccessType; |
22 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
23 |
|
import javax.xml.bind.annotation.XmlAttribute; |
24 |
|
import javax.xml.bind.annotation.XmlElement; |
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 33.3% |
Uncovered Elements: 8 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
29 |
|
public class LookupConstraint implements Serializable { |
30 |
|
|
31 |
|
private static final long serialVersionUID = 1L; |
32 |
|
|
33 |
|
@XmlAttribute |
34 |
|
protected String search; |
35 |
|
|
36 |
|
@XmlAttribute |
37 |
|
protected String searchField; |
38 |
|
|
39 |
|
@XmlElement(name = "lookupKey") |
40 |
|
protected List<LookupKeyConstraint> lookupKey; |
41 |
|
|
42 |
|
|
43 |
|
@return |
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public String getSearch() {... |
46 |
0
|
return search; |
47 |
|
} |
48 |
|
|
49 |
|
|
50 |
|
@param |
51 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
110
|
public void setSearch(String search) {... |
53 |
110
|
this.search = search; |
54 |
|
} |
55 |
|
|
56 |
|
|
57 |
|
@return |
58 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
0
|
public List<LookupKeyConstraint> getLookupKey() {... |
60 |
0
|
return lookupKey; |
61 |
|
} |
62 |
|
|
63 |
|
|
64 |
|
@param |
65 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
110
|
public void setLookupKey(List<LookupKeyConstraint> lookupKey) {... |
67 |
110
|
this.lookupKey = lookupKey; |
68 |
|
} |
69 |
|
|
70 |
|
|
71 |
|
@return |
72 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
73 |
0
|
public String getSearchField() {... |
74 |
0
|
return searchField; |
75 |
|
} |
76 |
|
|
77 |
|
|
78 |
|
@param |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public void setSearchField(String searchField) {... |
81 |
0
|
this.searchField = searchField; |
82 |
|
} |
83 |
|
} |