Eclipse Debug Configuration

0

Good afternoon.

I have a problem debugging my project in Eclipse. Native classes of java are appearing in the debugging process when the only classes that interest me are those that are part of my project. How do I choose not to view native Java classes?

Thank you!

    
asked by anonymous 04.09.2017 / 21:19

1 answer

1

Activate or / and configure Debug Step Filtering:

Window - Preferenes - Java - Debug - Step Filtering

The Use Step Filter option must be enabled and the classes / packages that do not want to debug checked (at least java.* and javax.* ).

See an example below:

If you are missing the package / class in question - java.* and javax.* - just use the respective left button: Add Packages... or Add Class... to select packages or classes; or Add Filter... to enter text form.

Note: There is also a button on the debugger's Perspective screen to turn Step Filter on / off directly (Shift + F5).

    
04.09.2017 / 21:41