1. Project Clover database Wed Nov 12 2025 05:07:35 UTC
  2. Package guru.mikelue.foxglove

File TableFacet.java

 

Code metrics

0
0
0
1
20
5
0
-
-
0
-

Classes

Class Line # Actions
TableFacet 6 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

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    }