So, is everyone in agreement that the warning can be prevented by modifying the definition of the jcombobox and and not in this "additem".
I created the jcombobox in NetBeans by dragging it from the swing palette. The definition for it is in code produced by NetBeans and I can't modify.
What do I do.
Below is the code that I can't change;
private void initComponents() {
...
jComboBox6 = new javax.swing.JComboBox();
}
In the NetBeans form editor, select the JComboBox. In the
Properties panel, click the Code tab. Open the Type Parameters
editor said:
It seems to me that you are having more trouble with the
NetBeans form designer and its artifacts than with Java and
Swing. The designer is an intricate beast, with little controls
and menus and twiddly bits festooned all over the landscape, to
the extent that I imagine it might take most of a year's solid
effort to master the complexity. Someone with that mastery
could probably churn out forms faster than someone just typing
Java code -- but the typist has several months' head start while
the other guy is learning how to use the designer.
If you expect to be doing a LOT of form designing, by all
means spend the time to learn the form designer inside and out.
But if you just want a simple form or three, skip the designer:
It will just get in your way (as it seems to be doing now). If
you're having trouble achieving some particular effect you might
create a mock-up in the designer and study the generated code to
get ideas, but I truly think you'll get to a better outcome sooner
by writing the Java code yourself.