| Class | Line # | Actions | |||||
|---|---|---|---|---|---|---|---|
| TableFacet | 6 | 0 | - | 0 | 0 |
| 1 | package guru.mikelue.foxglove; | |
| 2 | ||
| 3 | /** | |
| 4 | * Defines the rules to generate rows of a table. | |
| 5 | */ | |
| 6 | public interface TableFacet { | |
| 7 | /** | |
| 8 | * Returns the name of table to generate data. | |
| 9 | * | |
| 10 | * @return The name of table | |
| 11 | */ | |
| 12 | String tableName(); | |
| 13 | ||
| 14 | /** | |
| 15 | * Returns the number of rows to be generated for the table. | |
| 16 | * | |
| 17 | * @return The number of rows to be generated | |
| 18 | */ | |
| 19 | int getNumberOfRows(); | |
| 20 | } |