| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| KeyLabeled |
|
| 1.0;1 |
| 1 | package org.kuali.rice.core.api.uif; | |
| 2 | ||
| 3 | import java.util.Map; | |
| 4 | ||
| 5 | /** | |
| 6 | * A Control with key-label pairs of values for a user to select from. | |
| 7 | */ | |
| 8 | public interface KeyLabeled { | |
| 9 | ||
| 10 | /** | |
| 11 | * The key-label pairs to display on the control. This field cannot be null or an empty map. | |
| 12 | * | |
| 13 | * @return a map containing values. | |
| 14 | */ | |
| 15 | Map<String, String> getKeyLabels(); | |
| 16 | } |