This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 60043 - Javadoc popup not opened for some methods
Summary: Javadoc popup not opened for some methods
Status: VERIFIED INVALID
Alias: None
Product: editor
Classification: Unclassified
Component: Completion & Templates (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-15 13:51 UTC by Roman Strobl
Modified: 2007-11-05 13:38 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Roman Strobl 2005-06-15 13:51:23 UTC
[NetBeans 200506142000; WinXP; JDK 1.5.0_04]

It is currently not possible to invoke javadoc popup for cases like:

new java.util.Date().aft|er()

Shortcut Ctrl-Shift-Space doesn't work on the place designated by |.
Comment 1 Martin Roskanin 2005-06-27 15:41:33 UTC
reproduced. This should be fixable to NB 4.2
Comment 2 Martin Roskanin 2005-07-13 14:48:51 UTC
There is no method:
new java.util.Date().after();

This one will work:
new java.util.Date().af|ter(new Date());

Closing as invalid. 
If you expect the javadoc of after(Date) in af|ter() I think it is not a good
solution. The same problem could be applicable also in Alt+F1 or Alt+G...

Comment 3 Roman Strobl 2005-10-26 14:31:50 UTC
Verified.