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 256869 - Missing reproducivity
Summary: Missing reproducivity
Status: RESOLVED WORKSFORME
Alias: None
Product: ide
Classification: Unclassified
Component: Code (show other bugs)
Version: 8.1
Hardware: PC Windows 10 x64
: P1 normal (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-11-30 13:36 UTC by FiruzzZ
Modified: 2015-11-30 14:17 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 FiruzzZ 2015-11-30 13:36:55 UTC
I can't submit error, the "warning/info" message about "Missing reproducibity" not disappears.

This is what I typed in the description area: (it is a very severe error in the UI Designer for SE)

STEPS:
  * Draw and drop a JCombobox component using the Designer is declaring it as JCombobox<String> and we can't CHANGE that because is IN THE LOCKED declaration.

ACTUAL:
  nothing happens

EXPECTED:
  This was always declared without specify a generic (raw type) and that how always worked, you need to changed back this.
Comment 1 FiruzzZ 2015-11-30 13:59:43 UTC
I had to use a notepad to change

private javax.swing.JComboBox<String> cbEstados;

to 

private javax.swing.JComboBox<Object> cbEstados;
or
private javax.swing.JComboBox cbEstados;
or
private javax.swing.JComboBox<?> cbEstados;
Comment 2 Jiri Prox 2015-11-30 14:07:09 UTC
The type of JCombobox can be customized in properties. 
Just select component in UI designer and in the properties switch to Code tab.
Comment 3 FiruzzZ 2015-11-30 14:17:59 UTC
(In reply to Jiri Prox from comment #2)
> The type of JCombobox can be customized in properties. 
> Just select component in UI designer and in the properties switch to Code
> tab.

Why is this now the default behavior?, because it really not the most used generic type