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

ColorModel.getComponentSize()-wrong conditions for ArrayIndexOutOfBoundsExceptio

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • 20
    • client-libs
    • None
    • 2d
    • minimal
    • the documentation update only
    • Java API
    • SE

      Summary

      Correct the specification of ArrayIndexOutOfBoundsException conditions for java.awt.image.ColorModel#getComponentSize(int)

      Problem

      The specification of ColorModel.getComponentSize(int) states that ArrayIndexOutOfBoundsException is thrown "if componentIdx is greater than the number of components or less than zero". The condition should actually be "if componentIdx is greater than OR EQUAL TO the number of components or less than zero."

      Solution

      Update the spec according to the current behavior.

      Specification

      java/awt/image/ColorModel.java :

      -     * @throws ArrayIndexOutOfBoundsException if {@code componentIdx}
      -     *         is greater than the number of components or
      -     *         less than zero
      +     * @throws ArrayIndexOutOfBoundsException if {@code componentIdx} is greater
      +     *         than or equal to the number of components or less than zero
            * @throws NullPointerException if the number of bits array is
            *         {@code null}
            */
           public int getComponentSize(int componentIdx) {

            serb Sergey Bylokhov
            pjr Paul Rank (Inactive)
            Philip Race
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: