It's often more useful to see the full call hierarchy (Ctrl + Alt + H) of given method (e.g. getter/setter/constructor) rather than showing usages (Alt + F7). I can do it only if I have the code for getter/setter/constructor available in the class. In case it is generated with Lombok I'm no longer able to see the call hierarchy.
When calling 'Call hierarchy' (Ctrl + Alt + H) on field 'myField' I should get a popup with list of methods generated by Lombok (e.g. setMyField, getMyField, myField from builder) and after clicking on a given method I should get exactly what I would get if the method was in the source code and I called (Ctrl + Alt + H).
When calling 'Call hierarchy' (Ctrl + Alt + H) on a class name I should get a popup with list of all constructors generated by Lombok and after clicking on a given constructor I should get its call hierarchy.
2.Try to find call hierarchy for getMyField method using Ctrl + Alt + H.
### Sample project
-
### Additional information
-
### Stacktrace
-
STACKTRACE HERE (inside code markup)
As a workaround to display the call hierarchy, you can:
That should give you the call hierarchy.
Since IntelliJ IDEA 2019.3 CTRL + ALT + H works natively for fields, too (see https://youtrack.jetbrains.com/issue/IDEA-160274), but only shows getters/setters (and their usage) for directly written getters/setters, the Lombok Getters/Setters are ignored (and hence all other usages of them)
It would be great, if the call Hierachy clould also take account of the Lombok getteers/setters.