How to set a breakpoint on a default Java constructor in Eclipse?

Viewed 6883

In Eclipse, I would like to set a breakpoint on a Java default constructor. I can't simply double click to the left of any line of code since default constructors have no source code - they are implicitly generated by the Java compiler.

I'd like to be able to set such a breakpoint without modifying the existing code.

9 Answers
Related