Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SelectGroup |
|
| 1.0;1 |
1 | package org.kuali.rice.core.api.uif; | |
2 | ||
3 | /** | |
4 | * A Select Group for a Select Control. | |
5 | */ | |
6 | public interface SelectGroup extends KeyLabeled { | |
7 | /** | |
8 | * The label for the select group select group. Cannot be null or blank. | |
9 | * @return the label | |
10 | */ | |
11 | String getLabel(); | |
12 | } |