mirror of
https://github.com/github/codeql.git
synced 2026-03-18 05:26:45 +01:00
14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
/**
|
|
* @name GetLibraryAnnotationElement
|
|
*/
|
|
|
|
import default
|
|
|
|
from Class cl, Annotation ann, AnnotationType anntp, AnnotationElement anne
|
|
where
|
|
cl.fromSource() and
|
|
ann = cl.getAnAnnotation() and
|
|
anntp = ann.getType() and
|
|
anne = anntp.getAnAnnotationElement()
|
|
select cl, ann, anntp.getQualifiedName(), anne.getName()
|