1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.core.search.dto; |
17 |
|
import java.io.Serializable; |
18 |
|
|
19 |
|
import javax.xml.bind.annotation.XmlAccessType; |
20 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
21 |
|
import javax.xml.bind.annotation.XmlElement; |
22 |
|
|
23 |
|
|
24 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
25 |
|
public class SearchRelationship implements Serializable { |
26 |
|
private static final long serialVersionUID = 1L; |
27 |
|
@XmlElement |
28 |
|
private TypeAttribute lhs; |
29 |
|
@XmlElement |
30 |
|
private TypeAttribute rhs; |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
31 |
0
|
public TypeAttribute getLhs(){... |
32 |
0
|
return lhs; |
33 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
0
|
public void setLhs(TypeAttribute lhs){... |
35 |
0
|
this.lhs = lhs; |
36 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
public TypeAttribute getRhs(){... |
38 |
0
|
return rhs; |
39 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
40 |
0
|
public void setRhs(TypeAttribute rhs){... |
41 |
0
|
this.rhs = rhs; |
42 |
|
} |
43 |
|
} |