Friday, March 30, 2007

Hyperlink Debugging

I know I have been silent for qute some time, so I figured it was time to come back to the blogosphere and drop some more knowledge. This time (nothing like that breakpoints post) we have an axesome new feature which is proving to be far more handy than any of us could have really imagined (except Darin of course because he knows everything); Hyperlink Debugging.

The idea behind hyperlink debugging follows that useful feature that pretty much everyone already knows about: hyperlink open declaration (Ctrl+Click in editors open declarations). Except in our case you can do lightning fast step-into operations with but the press of Ctrl+Alt and a click of the mouse....not impressed yet? check out the example.

Lets say you wanted to step into the createComposite method shown below:

SWTFactory.createComposite(getParent(), mainComp.getFont(), getStyle(), getFill());

The old way, you would have to step into and out of all of the method calls in the createComposite method prior to stepping into the one you wanted. You could of course use the old passe method of step into selection...but just imaging being able to step into creatComposite with a single click...no more selecting code, no more repetitious step into/out of code.

You can even select what keys to use as modifiers (thanks to the jdt UI guys of course).


I know what you are thinking....Axesome.

No comments:

Post a Comment