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 270881 - Code changes not needed
Summary: Code changes not needed
Status: NEW
Alias: None
Product: ide
Classification: Unclassified
Component: Code (show other bugs)
Version: 8.2
Hardware: PC Windows 10 x64
: P4 normal with 1 vote (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-06-14 16:46 UTC by amurati
Modified: 2017-06-18 07:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE log (126.61 KB, text/plain)
2017-06-14 16:46 UTC, amurati
Details

Note You need to log in before you can comment on or make changes to this bug.
Description amurati 2017-06-14 16:46:13 UTC
Product Version = NetBeans IDE 8.2 (Build 201705191307)
Operating System = Windows 10 version 10.0 running on amd64
Java; VM; Vendor = 1.8.0_101
Runtime = Java HotSpot(TM) 64-Bit Server VM 25.101-b13

Reproducibility: Happens every time

STEPS:
 I have created a JComboBox 
as 
 private javax.swing.JComboBox<Gender> jCboGenders;
    private javax.swing.JComboBox<Position> jCboPositions;
 

ACTUAL:
  but NetBeans converts them to

 private javax.swing.JComboBox<String> jCboGenders;
    private javax.swing.JComboBox<String> jCboPositions;

EXPECTED:
   private javax.swing.JComboBox<Gender> jCboGenders;
    private javax.swing.JComboBox<Position> jCboPositions;
Comment 1 amurati 2017-06-14 16:46:18 UTC
Created attachment 164541 [details]
IDE log