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 void
filter(org.objectweb.asm.tree.MethodNode methodNode, IFilterContext context, IFilterOutput output)
This method is called for every method.private static boolean
matches(java.lang.String annotation)
private static boolean
presentIn(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:IFilter
This method is called for every method. The filter implementation is expected to inspect the provided method and report its result to the givenIFilterOutput
instance.
-
matches
private static boolean matches(java.lang.String annotation)
-
presentIn
private static boolean presentIn(java.util.List<org.objectweb.asm.tree.AnnotationNode> annotations)
-
-