1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.entity; |
17 |
|
|
18 |
|
import javax.persistence.Column; |
19 |
|
import javax.persistence.Inheritance; |
20 |
|
import javax.persistence.InheritanceType; |
21 |
|
import javax.persistence.MappedSuperclass; |
22 |
|
|
23 |
|
@MappedSuperclass |
24 |
|
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
25 |
|
public class RichText extends BaseEntity{ |
26 |
|
|
27 |
|
@Column(name = "PLAIN",length=KSEntityConstants.LONG_TEXT_LENGTH) |
28 |
|
private String plain; |
29 |
|
|
30 |
|
@Column(name = "FORMATTED",length=KSEntityConstants.LONG_TEXT_LENGTH) |
31 |
|
private String formatted; |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
public String getPlain() {... |
34 |
0
|
return plain; |
35 |
|
} |
36 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
public void setPlain(String plain) {... |
38 |
0
|
this.plain = plain; |
39 |
|
} |
40 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0
|
public String getFormatted() {... |
42 |
0
|
return formatted; |
43 |
|
} |
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public void setFormatted(String formatted) {... |
46 |
0
|
this.formatted = formatted; |
47 |
|
} |
48 |
|
} |