IAdapter
IAdapter

Reputation: 64737

How to ignore auto-generated classes in eclipse debugger?

How to ignore auto-generated classes in eclipse debugger? classes like proxy cglib class, java assists generated classes. EJB3 and EJB2 generated classes. I want debugger to only show classes that have a source.

Upvotes: 4

Views: 654

Answers (1)

apesa
apesa

Reputation: 12443

This has been asked several times and I have never seen nor found a way to explicitly not drop into other src files if you're "stepping into" platform code.

Think about it.. You will need to step around this or create additional breakpoints further downline that allow you to "Resume" out of the platform code and break back into your code.. Make sense.

IMHO, creating plugins and programmatic workarounds for things like this is wrong in that it eliminates the necessity to build the correct knowledge as a proficient debugger that knows how to use the toolset correctly

Upvotes: 1

Related Questions