| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.core.bo.options; |
| 17 |
|
|
| 18 |
|
import java.util.ArrayList; |
| 19 |
|
import java.util.List; |
| 20 |
|
|
| 21 |
|
import org.kuali.rice.core.util.KeyLabelPair; |
| 22 |
|
import org.kuali.rice.kns.lookup.keyvalues.KeyValuesBase; |
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.25 |
|
| 27 |
|
public class StateValuesFinder extends KeyValuesBase { |
| 28 |
|
|
| 29 |
|
|
| 30 |
|
@see |
| 31 |
|
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
| 32 |
0
|
public List<KeyLabelPair> getKeyValues() {... |
| 33 |
0
|
List<KeyLabelPair> labels = new ArrayList<KeyLabelPair>(); |
| 34 |
0
|
labels.add(new KeyLabelPair("Actual", "Actual")); |
| 35 |
0
|
labels.add(new KeyLabelPair("Tentative", "Tentative")); |
| 36 |
|
|
| 37 |
0
|
return labels; |
| 38 |
|
} |
| 39 |
|
|
| 40 |
|
} |