Are there any tools that can be used to register all method calls from running a java application?
eg.
String str = "...";
String anotherString = str.trim();
should write something like this:
..method call trim() from class java.lang.String
source
share