| 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 TimeAmount { |
| 23 |
|
|
| 24 |
|
@Column(name="ATP_DUR_TYP_KEY") |
| 25 |
|
private String atpDurationTypeKey; |
| 26 |
|
|
| 27 |
|
@Column(name="TM_QUANTITY") |
| 28 |
|
private Integer timeQuantity; |
| 29 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 30 |
0
|
public String getAtpDurationTypeKey() {... |
| 31 |
0
|
return atpDurationTypeKey; |
| 32 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 33 |
0
|
public void setAtpDurationTypeKey(String atpDurationTypeKey) {... |
| 34 |
0
|
this.atpDurationTypeKey = atpDurationTypeKey; |
| 35 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 36 |
0
|
public Integer getTimeQuantity() {... |
| 37 |
0
|
return timeQuantity; |
| 38 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 39 |
0
|
public void setTimeQuantity(Integer timeQuantity) {... |
| 40 |
0
|
this.timeQuantity = timeQuantity; |
| 41 |
|
} |
| 42 |
|
} |