Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4479280

javax.swing.DefaultComboBoxModel constructor busted

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.4.0
    • client-libs



      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)
      ======================================================================

            mdavidsosunw Mark Davidson (Inactive)
            bstrathesunw Bill Strathearn (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: