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 194324 - Completing "{@link Clazz#meth" should not append arg types except for overloads
Summary: Completing "{@link Clazz#meth" should not append arg types except for overloads
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Javadoc (show other bugs)
Version: 7.0
Hardware: All All
: P3 normal with 2 votes (vote)
Assignee: Jan Becicka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-13 21:03 UTC by Jesse Glick
Modified: 2011-01-13 21:03 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jesse Glick 2011-01-13 21:03:14 UTC
If I write

 {@link LibraryManager#createLib

and invoke code completion and accept the single result, I would like to get

  {@link LibraryManager#createLibrary}

and not

  {@link LibraryManager#createLibrary(java.lang.String, java.lang.String, java.util.Map) 

as now - unless there are actually multiple overloads for this method, in which case the current behavior is necessary to distinguish them.