Class Filters
- java.lang.Object
-
- org.jacoco.core.internal.analysis.filter.Filters
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IFilterall()Creates filter that combines all other filters.voidfilter(org.objectweb.asm.tree.MethodNode methodNode, IFilterContext context, IFilterOutput output)This method is called for every method.
-
-
-
Field Detail
-
NONE
public static final IFilter NONE
Filter that does nothing.
-
-
Method Detail
-
all
public static IFilter all()
Creates filter that combines all other filters.- Returns:
- filter that combines all other filters
-
filter
public void filter(org.objectweb.asm.tree.MethodNode methodNode, IFilterContext context, IFilterOutput output)Description copied from interface:IFilterThis method is called for every method. The filter implementation is expected to inspect the provided method and report its result to the givenIFilterOutputinstance.
-
-