API providers may annotate a method with an annotation like
androidx.annotation.CallSuper
or
javax.annotation.OverridingMethodsMustInvokeSuper
to require that overriding
methods invoke the super method. This check enforces those annotations.
Suppress false positives by adding the suppression annotation @SuppressWarnings("MissingSuperCall")
to the enclosing element.