Read of field
Author: Semmle LGTM
import java
from Field f, FieldRead read
where
f.hasName('aField') and
f.getDeclaringType().hasQualifiedName('com.example', 'Class') and
f = read.getField()
select read
Description
Finds reads of aField (defined on com.example.Class)