1 |
|
package org.kuali.student.core.bo; |
2 |
|
|
3 |
|
import javax.persistence.Column; |
4 |
|
import javax.persistence.Inheritance; |
5 |
|
import javax.persistence.InheritanceType; |
6 |
|
import javax.persistence.MappedSuperclass; |
7 |
|
|
8 |
|
@MappedSuperclass |
9 |
|
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
10 |
|
public class KsRichTextBusinessObjectBase extends KsBusinessObjectBase { |
11 |
|
|
12 |
|
private static final long serialVersionUID = -8080006030631944540L; |
13 |
|
|
14 |
|
@Column(name = "PLAIN") |
15 |
|
private String plain; |
16 |
|
|
17 |
|
@Column(name = "FORMATTED") |
18 |
|
private String formatted; |
19 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
20 |
0
|
public String getPlain() {... |
21 |
0
|
return plain; |
22 |
|
} |
23 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
24 |
0
|
public void setPlain(String plain) {... |
25 |
0
|
this.plain = plain; |
26 |
|
} |
27 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
28 |
0
|
public String getFormatted() {... |
29 |
0
|
return formatted; |
30 |
|
} |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public void setFormatted(String formatted) {... |
33 |
0
|
this.formatted = formatted; |
34 |
|
} |
35 |
|
|
36 |
|
} |