We can find out where a function is used by "Call Hierarchy". I want to extract the hierarchy of all the functions in the project and export it to a table like excel. Is there a known plugin for this? I use IntelliJ, but if there is an easier way to do this with Eclipse, I can move the project to Eclipse. If I don't have such an plugin, should I write a code about it? Which libraries should I use for this?
Other places where clickCancelButton () is used when Navigate / Call Hierarchy is performed for Management.clickCancelButton ()
NadModeController.clickCancelButton()
TimeItemListController.clickCancelButton()
VoyageController.clickCancelButton()
UserController.clickCancelButton()
ItineraryUpdateController.clickCancelButton()
VoyageUpdateController.clickCancelButton()
ItineraryController.clickCancelButton()
UserUpdateController.clickCancelButton()
like this. For all functions in the project, I am looking for a way to do this all at once.