subodh
subodh

Reputation: 6158

In IDE NetBeans For Java Debugging

While using eclipse we have a short cut key ctrl + Shift + i to get the selected object values in debug mode. But I am not able to find out any such short cut key in NetBeans IDE. If any body knows that how to know the selected object value in debug mode please help me, Thanks

Upvotes: 1

Views: 1268

Answers (1)

COD3BOY
COD3BOY

Reputation: 12092

Here we go : NetBeans IDE 6.0 - 6.5 Keyboard Shortcuts

And here are some other useful shortcuts when debugging Java code in NetBeans

  • F8 Step over
  • F7 Step into
  • Ctrl+F7 Step out
  • F5 Continue
  • Ctrl + F8 Toggle line breakpoint
  • Ctrl + Shift + F8 Create a new breakpoint dialog window for more breakpoint options
  • Ctrl + F9 Evaluate expression
  • Ctrl + Shift + F7 Create a new watch
  • Ctrl + F5 Debug main project

Upvotes: 4

Related Questions