| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RowsCols |
|
| 1.0;1 |
| 1 | package org.kuali.rice.core.api.uif; | |
| 2 | ||
| 3 | /** | |
| 4 | * A Control with a vertical and horizontal size based on number of rows and columns. | |
| 5 | */ | |
| 6 | public interface RowsCols { | |
| 7 | ||
| 8 | /** | |
| 9 | * The rows value to make the control (The vertical size). This field can be null. Cannot be less than 1. | |
| 10 | * | |
| 11 | * @return the rows value or null. | |
| 12 | */ | |
| 13 | Integer getRows(); | |
| 14 | ||
| 15 | /** | |
| 16 | * The cols value to make the control (The horizontal size). This field can be null. Cannot be less than 1. | |
| 17 | * | |
| 18 | * @return the cols value or null. | |
| 19 | */ | |
| 20 | Integer getCols(); | |
| 21 | } |