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 97530 - Show generic types in some other color or font attributes
Summary: Show generic types in some other color or font attributes
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-09 01:32 UTC by _ tboudreau
Modified: 2013-09-02 14:25 UTC (History)
1 user (show)

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 _ tboudreau 2007-03-09 01:32:24 UTC
Say I have a class:

public final class Dispatcher <Target, WorkType> {
   //..a bunch of other methods

   public void put(Target key, WorkType content) {
      //...
   }
}

there should be some way to know that "Target" and "WorkType" in the signature
of put() represent generic types, not normal Java types.  Right now they are
rendered with the same font/color as regular types.