1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
|
20 |
|
import javax.xml.bind.annotation.XmlAccessType; |
21 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
22 |
|
import javax.xml.bind.annotation.XmlElement; |
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
34 |
|
public class AmountInfo implements Serializable { |
35 |
|
|
36 |
|
private static final long serialVersionUID = 1L; |
37 |
|
|
38 |
|
@XmlElement |
39 |
|
private String unitType; |
40 |
|
|
41 |
|
@XmlElement |
42 |
|
private String unitQuantity; |
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
47 |
0
|
public String getUnitType() {... |
48 |
0
|
return unitType; |
49 |
|
} |
50 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
51 |
0
|
public void setUnitType(String unitType) {... |
52 |
0
|
this.unitType = unitType; |
53 |
|
} |
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
58 |
0
|
public String getUnitQuantity() {... |
59 |
0
|
return unitQuantity; |
60 |
|
} |
61 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
0
|
public void setUnitQuantity(String unitQuantity) {... |
63 |
0
|
this.unitQuantity = unitQuantity; |
64 |
|
} |
65 |
|
} |