Jacky Luk
Jacky Luk

Reputation: 39

Tooltips for the netbeans IDE

How do I get tooltip help from Netbeans 7.3? And side-by-side dropdown boxes which divert me to the correct classes and methods? Thanks Jack

Upvotes: 4

Views: 1912

Answers (2)

SonicBlueTyphoon
SonicBlueTyphoon

Reputation: 1

This helped me, but already posted on another thread was the answer here TLDR: Control + Shift + Space

Upvotes: 0

MaVRoSCy
MaVRoSCy

Reputation: 17839

You can get tooltip help from the IDE by hovering a line that has some sort of light bulb on the left of your code like below:

enter image description here

Then Pressing Alt-Enter the IDE will give you a list of suggestions of how you can improve/modify your code.

Also you can get the auto complete functionality by pressing CTRL+SPACE in the code editor. This will bring up any javadoc information about the Method/Object/etc like below:

enter image description here

Upvotes: 3

Related Questions