Override of method
Author: Semmle LGTM
import java
from Method override, Method base
where
base.hasName('baseMethod') and
base.getDeclaringType().hasQualifiedName('com.example', 'Class') and
override.overrides+(base)
select override
Description
Finds methods that override com.example.Class.baseMethod