1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lu.entity; |
17 |
|
|
18 |
|
import javax.persistence.Entity; |
19 |
|
import javax.persistence.JoinColumn; |
20 |
|
import javax.persistence.ManyToOne; |
21 |
|
import javax.persistence.Table; |
22 |
|
|
23 |
|
import org.kuali.student.core.entity.Attribute; |
24 |
|
|
25 |
|
@Entity |
26 |
|
@Table(name = "KSLU_LUILUI_RELTN_ATTR") |
|
|
| 50% |
Uncovered Elements: 2 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
27 |
|
public class LuiLuiRelationAttribute extends Attribute<LuiLuiRelation> { |
28 |
|
@ManyToOne |
29 |
|
@JoinColumn(name = "OWNER") |
30 |
|
private LuiLuiRelation owner; |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
@Override... |
33 |
|
public LuiLuiRelation getOwner() { |
34 |
0
|
return owner; |
35 |
|
} |
36 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
3
|
@Override... |
38 |
|
public void setOwner(LuiLuiRelation owner) { |
39 |
3
|
this.owner = owner; |
40 |
|
} |
41 |
|
|
42 |
|
} |