Class AnnotationGeneratedFilter
- java.lang.Object
-
- org.jacoco.core.internal.analysis.filter.AnnotationGeneratedFilter
-
-
Constructor Summary
Constructors Constructor Description AnnotationGeneratedFilter()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfilter(org.objectweb.asm.tree.MethodNode methodNode, IFilterContext context, IFilterOutput output)This method is called for every method.private static booleanmatches(java.lang.String annotation)private static booleanpresentIn(java.util.List<org.objectweb.asm.tree.AnnotationNode> annotations)
-
-
-
Method Detail
-
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.
-
matches
private static boolean matches(java.lang.String annotation)
-
presentIn
private static boolean presentIn(java.util.List<org.objectweb.asm.tree.AnnotationNode> annotations)
-
-