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 47538 - Auto Comment Tool displays wrong methods with generics
Summary: Auto Comment Tool displays wrong methods with generics
Status: CLOSED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Javadoc (show other bugs)
Version: 4.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: Jan Pokorsky
URL:
Keywords:
Depends on:
Blocks: 46262
  Show dependency tree
 
Reported: 2004-08-20 12:31 UTC by Marek Grummich
Modified: 2006-03-24 10:29 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 Marek Grummich 2004-08-20 12:31:01 UTC
Build 200408181800, jdk1.5.0-b63
The methods - 
public static ArrayList<Card> newDeck() {
   return new ArrayList<Card>(protoDeck);
}
is displayed -
public static java.lang.Object newDeck()
in the list of methods and fields in the  Auto
Comment Tool.
Second case:
The method -
public void runAll(Collection<Thread> c) {
   for (Iterator<Thread> i = c.iterator();
i.hasNext(); )
      i.next().run();              
}
is displayed -
public void runAll(Collection c) in the list
(<Thread> is missing).
Comment 1 Martin Matula 2004-08-20 22:48:22 UTC
Should be fixed once javadoc module is rewritten to use JMI instead
the old org.openide.src.
Comment 2 Jan Pokorsky 2004-09-07 13:53:00 UTC
fixed as a part of issue #46262
Comment 3 Marek Grummich 2004-10-07 11:44:44 UTC
Verified 200410070525