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 125257 - Improve information about target when control-clicking on generic type
Summary: Improve information about target when control-clicking on generic type
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Navigation (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Tomas Zezula
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-01-15 08:55 UTC by Jiri Prox
Modified: 2011-08-31 14:07 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 Jiri Prox 2008-01-15 08:55:46 UTC
Product Version: NetBeans IDE 6.0.1 dev (Build 200801100000)
Java: 1.6.0_05-ea; Java HotSpot(TM) Client VM 1.6.0_05-ea-b06
System: Linux version 2.6.5-1.358 running on i386; UTF-8; en_US (nb)

When control is pressed and mouse cursor is hovering over some element, the popup informing about the target is opened.
For generic type this popup is empty.

Example: press control and move cursor over T in method declaration in following class:

public abstract class Response<T> {    
    T resp;    
    public void getResponse(T resp) {
        this.resp = resp;
    }
}