I have a class with lombok annotation (either @Value
or @Data
) and I am looking for an easy way to find usages of the auto generated constructor.
What I can do now is to find a one use of the constructor, put the cursor there and run 'Find usages' command and I get the results I want.
However I would like to do this directly from the class declaration. Is there a way to do that?
Call Hierarchy
view works (to see who is calling)! Just presscontrol+option+H
(mac) while inside the File Structure popup – Mosesmosey