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 61884 - New code completion: no way to look at Javadoc for constructors
Summary: New code completion: no way to look at Javadoc for constructors
Status: VERIFIED DUPLICATE of bug 60362
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: REGRESSION
Depends on:
Blocks:
 
Reported: 2005-08-05 23:12 UTC by Jesse Glick
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 Jesse Glick 2005-08-05 23:12:53 UTC
In the new 4.2 code completion, there is no apparent way to see Javadoc for
constructors. If you have

  new Foo()

and place caret here "new Foo|()" you get class Javadoc. Inside here "new
Foo(|)" you get general Javadoc for any existing class, fields in this class,
etc. In NB 4.1 the former would give class Javadoc, the latter Javadoc for the
appropriate constructor.
Comment 1 Jesse Glick 2005-09-19 20:55:40 UTC
Relation to issue #60362?
Comment 2 Martin Roskanin 2005-09-20 08:12:23 UTC
Yes, thanks Jesse.
The issue is already fixed, thanks for your report. Please check the latest dev
build and reopen if the problem persists. Thanks.

*** This issue has been marked as a duplicate of 60362 ***
Comment 3 Jaromir Uhrik 2005-09-21 16:14:44 UTC
Verified in dev build #200509210657. Javadoc correctly appears for:
 -constructor type on the top when typed Ctrl+Space while Foo(|)
 -foo class when typed Ctrl+Space while Foo|()