1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.core.statement.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 = "KSST_REF_STMT_REL_ATTR") |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
27 |
|
public class RefStatementRelationAttribute extends Attribute<RefStatementRelation> { |
28 |
|
@ManyToOne |
29 |
|
@JoinColumn(name = "OWNER") |
30 |
|
private RefStatementRelation owner; |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
@Override... |
33 |
|
public RefStatementRelation getOwner() { |
34 |
0
|
return owner; |
35 |
|
} |
36 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
@Override... |
38 |
|
public void setOwner(RefStatementRelation owner) { |
39 |
0
|
this.owner = owner; |
40 |
|
} |
41 |
|
} |