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 113864 - Reduce number of warnings from binding code
Summary: Reduce number of warnings from binding code
Status: RESOLVED FIXED
Alias: None
Product: guibuilder
Classification: Unclassified
Component: Binding (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@guibuilder
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-08-27 16:04 UTC by Jan Stola
Modified: 2010-03-01 05:49 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 Jan Stola 2007-08-27 16:04:57 UTC
Try to reduce number of warnings (mainly the unchecked ones) caused by binding code.
Comment 1 Jan Stola 2010-03-01 05:49:50 UTC
We have evaluated the possibility to reduce the number of warnings some time ago. It turned out that it would be possible to reduce the warnings at the cost of extreme increase of local variables in initComponents. The result of such a change would be increased amount of the code and a lot of ugly local variables (like ELProperty<JTextField,String> eLProperty83). Therefore, we have decided that it is not worth the effort. Finally, we have reduced the number of warnings by introduction of @SuppressWarnings("unchecked").