Eclipse Java Debug with missing source files
Is there a way to skip the files automatically for which there is no source code in Eclipse while debugging a Java/Android application? So, to be clear, Step Into or Step Over to not display the useless missing file "summary" but to go on until an instruction from my code is r开发者_JS百科eached. Thanks.
You can use Step Filtering to achieve much the same thing.
Open Java->Debug->Step Filtering in your Eclipse Preferences and add the filters for the classes/packages you have no source for.
I don't think there is any way you can do that. But you can use breakpoints to make larger steps in your code and, that will step over and out of files with no source code. Just right-click on a line and press "toggle breakpoint".. Hope this helps?
精彩评论