简体   繁体   中英

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 reached. 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?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM