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 CurrencyAmount { |
23 |
|
|
24 |
|
@Column(name="CURRENCY_TYPE") |
25 |
|
private String currencyTypeKey; |
26 |
|
|
27 |
|
@Column(name="CURRENCY_QUANT") |
28 |
|
private Integer currencyQuantity; |
29 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
0
|
public String getCurrencyTypeKey() {... |
31 |
0
|
return currencyTypeKey; |
32 |
|
} |
33 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
0
|
public void setCurrencyTypeKey(String currencyTypeKey) {... |
35 |
0
|
this.currencyTypeKey = currencyTypeKey; |
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
public Integer getCurrencyQuantity() {... |
39 |
0
|
return currencyQuantity; |
40 |
|
} |
41 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public void setCurrencyQuantity(Integer currencyQuantity) {... |
43 |
0
|
this.currencyQuantity = currencyQuantity; |
44 |
|
} |
45 |
|
} |