cristianchiess
cristianchiess

Reputation: 683

is there a way to see method's comment in netbeans like in eclipse?

On Eclipse when i point the mouse up to a method it shows the method's comment (java doc), is there any way to do some thing like that in netbeans (7.3) without putting the cursor in the method middle and hitting Ctrl + Space?

Thanks in advance!

Upvotes: 1

Views: 53

Answers (2)

Ben
Ben

Reputation: 2255

It is supported in NetBeans 8.

Show Javadoc as tooltip while hovering (Note: hold CTRL-key) (Issue 95691)

See http://wiki.netbeans.org/NewAndNoteworthyNB80#Editor_2

Upvotes: 0

tostao
tostao

Reputation: 3058

You can view the javadoc in Netbeans by clicking on the method and press Ctrl+Shift+Space. Here You have more NetBeans shortcuts.

Upvotes: 1

Related Questions