Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Sized |
|
| 1.0;1 |
1 | package org.kuali.rice.core.api.uif; | |
2 | ||
3 | /** | |
4 | * A Control with a size. | |
5 | */ | |
6 | public interface Sized { | |
7 | ||
8 | /** | |
9 | * The size value to make the control. This field can be null. Cannot be less than 1. | |
10 | * | |
11 | * @return the size value or null. | |
12 | */ | |
13 | Integer getSize(); | |
14 | } |