| 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 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
| 25 |
|
public class TimeAmountInfo implements Serializable { |
| 26 |
|
private static final long serialVersionUID = 1L; |
| 27 |
|
@XmlElement |
| 28 |
|
private String atpDurationTypeKey; |
| 29 |
|
@XmlElement |
| 30 |
|
private Integer timeQuantity; |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 31 |
0
|
public String getAtpDurationTypeKey(){... |
| 32 |
0
|
return atpDurationTypeKey; |
| 33 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 34 |
0
|
public void setAtpDurationTypeKey(String atpDurationTypeKey){... |
| 35 |
0
|
this.atpDurationTypeKey = atpDurationTypeKey; |
| 36 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 37 |
0
|
public Integer getTimeQuantity(){... |
| 38 |
0
|
return timeQuantity; |
| 39 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 40 |
0
|
public void setTimeQuantity(Integer timeQuantity){... |
| 41 |
0
|
this.timeQuantity = timeQuantity; |
| 42 |
|
} |
| 43 |
|
} |