| Class | Line # | Actions | |||||
|---|---|---|---|---|---|---|---|
| TableFacetsProvider | 17 | 0 | - | 0 | 0 |
| 1 | package guru.mikelue.foxglove.functional; | |
| 2 | ||
| 3 | import java.util.List; | |
| 4 | import java.util.function.Supplier; | |
| 5 | ||
| 6 | import guru.mikelue.foxglove.TableFacet; | |
| 7 | ||
| 8 | /** | |
| 9 | * Provides a list of {@link TableFacet}s, | |
| 10 | * this interface is usually used by <a href="https://docs.junit.org/current/user-guide/#extensions">JUnit extension</a> or | |
| 11 | * <a href="https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/test/context/TestExecutionListener.html">TestExecutionListener</a> of SpringFramework. | |
| 12 | * | |
| 13 | * @param <T> The type of table facet | |
| 14 | * | |
| 15 | * @see TableFacetProvider | |
| 16 | */ | |
| 17 | public interface TableFacetsProvider<T extends TableFacet> extends Supplier<List<T>> {} |