Call To Method
Author: Semmle LGTM
import java
from MethodAccess call, Method method
where
call.getMethod() = method and
method.hasName('methodName') and
method.getDeclaringType().hasQualifiedName('com.example', 'Class')
select call
Description
Finds calls to com.example.Class.methodName