I'm using ASTParser to parse Java source code in a project. I managed to get the name and the return type of all the methods in the different classes of my Java project. I'm now wondering if it's possible to have the dependencies between the methods in main.
In fact I haven't read all the documentation for this class which is a bit complicated. Do you know if it's possible to have an idea about the interconnectedness of the methods in the main program? If it's not possible is there another API that I can use?
Thanks.