How to build call hierarchy for lombok generated method in intellij-idea
Asked Answered
H

1

12

Given an example:

@Data
public VO {
    private String item;
}

How to build call hierarchy for the getItem()?

I know there is a cumbersome path :open Structure, then find the method, then build hierarchy. Is there more efficient path or plugin?

Homeostasis answered 12/7, 2017 at 4:5 Comment(1)
See in #42645423Loyola
D
16

you can open the "stucture view" this should display the generated methods. If not you maybe need to install the lombok plugin.

In the structure view select the method getItem() and press the short cut for the call hierarchy (Ctrl + Alt + H) and the call hierarchy for the selected method will open up.

Denudate answered 26/10, 2017 at 10:10 Comment(1)
Strg means CtrlMultifaceted

© 2022 - 2024 — McMap. All rights reserved.