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

File TableFacetsProvider.java

 

Code metrics

0
0
0
1
17
5
0
-
-
0
-

Classes

Class Line # Actions
TableFacetsProvider 17 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

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>> {}