If you are executing code once, then you really should use breakpoints. If you set a breakpoint at the beginning of the block of code under investigation, you can use the "run to breakpoint" option to skip all the code that runs before the code under investigation.
If you set a breakpoint at the beginning of the constructor of the class you want to investigate, or the beginning of the method you want to investigate, if you are sure that the object instance is in order, you can skip the autoloader.
Netbeans and Eclipse PDT support setting breakpoints by simply clicking the line number of the code you want to examine.
In addition, the debugger also has the "exit" option, which allows you to jump out of the function / method that you jumped into using the "step in" option. If you find yourself in the autoloader, just exit it.
source share