Reputation: 39
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
Reputation: 1
This helped me, but already posted on another thread was the answer here TLDR: Control + Shift + Space
Upvotes: 0
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:
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:
Upvotes: 3