Is there any way to set breakpoints on all methods of a given class?
I have a huge (2300 lines) legacy class and I need to set breakpoints on all method calls to und
You can follow the steps below:
Run -> View breakpoints -> Add -> Java Method Breakpoints Class pattern -> full reference of your class (e.g., mypackage.MyClass) Method Name -> * (i.e., asterisk wild card)
Run -> View breakpoints -> Add -> Java Method Breakpoints
Class pattern -> full reference of your class (e.g., mypackage.MyClass)
Method Name -> * (i.e., asterisk wild card)