Does anyone know of a good static code analysis tool that can give answers to the following question?
Input: A set of classes and path to a folder containing java files
Output: A nice statistic about how often the methods of the given classes are called in any java file contained in the specified folder.
I know that eclipse would be one way - Search for references but then i would have to evaluate every method individually and we are talking about > 100 methods inside the given set of classes.
I am one step away from writing a simple program extracting the method names and grepping for them in the target folder but I can not believe there is no solution for such a task yet. ;)
Thanks in advance! Stefan