1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lrc.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.common.entity.Attribute; |
24 |
|
|
25 |
|
@Entity |
26 |
|
@Table(name = "KSLR_RESCOMP_ATTR") |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
27 |
|
public class ResultComponentAttribute extends Attribute<ResultComponent> { |
28 |
|
|
29 |
|
@ManyToOne |
30 |
|
@JoinColumn(name = "OWNER") |
31 |
|
private ResultComponent owner; |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
@Override... |
34 |
|
public ResultComponent getOwner() { |
35 |
0
|
return owner; |
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
@Override... |
39 |
|
public void setOwner(ResultComponent owner) { |
40 |
0
|
this.owner = owner; |
41 |
|
} |
42 |
|
|
43 |
|
} |