-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.0
-
x86
-
windows_2000
Name: bsC130419 Date: 07/12/2001
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b65)
Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)
From DefaultComboBoxModel.java
The following constructor needs to check if items == null and behave
accrodingly.
/**
* Constructs a DefaultComboBoxModel object initialized with
* an array of objects.
*
* @param items an array of Object objects
*/
public DefaultComboBoxModel(final Object items[]) {
objects = new Vector();
objects.ensureCapacity( items.length );
int i,c;
for ( i=0,c=items.length;i<c;i++ )
objects.addElement(items[i]);
if ( getSize() > 0 ) {
selectedObject = getElementAt( 0 );
}
}
I'm getting a NullPointerException using 1.4 where I wasn't in 1.3. I followed
the stack trace here to DefaultComboBoxModel.java(56).
(Review ID: 127983)
======================================================================
- duplicates
-
JDK-4472389 IllegalArgumentException thrown by JComboBox.setSelectedIndex() on Sol9,java 1.4
-
- Closed
-