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.Embeddable; |
20 |
|
|
21 |
|
@Embeddable |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
22 |
|
public class Amount { |
23 |
|
|
24 |
|
@Column(name="UNIT_TYPE") |
25 |
|
private String unitType; |
26 |
|
|
27 |
|
@Column(name="UNIT_QUANTITY") |
28 |
|
private String unitQuantity; |
29 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
0
|
public String getUnitType() {... |
31 |
0
|
return unitType; |
32 |
|
} |
33 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
0
|
public void setUnitType(String unitType) {... |
35 |
0
|
this.unitType = unitType; |
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
public String getUnitQuantity() {... |
39 |
0
|
return unitQuantity; |
40 |
|
} |
41 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public void setUnitQuantity(String unitQuantity) {... |
43 |
0
|
this.unitQuantity = unitQuantity; |
44 |
|
} |
45 |
|
} |