-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
1.3.0
-
sparc
-
solaris_2.5.1
Name: aaC67449 Date: 05/21/99
The JTabbedPane.getBoundsAt() throws unexpected ArrayIndexOutOfBoundsException, even if it was used with the correct index.
javadoc says: "
public Rectangle getBoundsAt(int index)
Returns the tab bounds at index. If the tab at this index is not
currently visible in the UI, then returns null. If there is no
UI set on this tabbedpane, then returns null.
"
It returns Á correct value in jdk1.2.2.
---------------- example ---------------
import javax.swing.*;
public class Test {
public static void main(String argv[]) {
JTabbedPane c = new JTabbedPane();
c.addTab("Test", new JButton("Test"));
System.out.println("PASSED:"+c.getBoundsAt(0));
}
}
-------------jdk1.3 output---------
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
at javax.swing.plaf.basic.BasicTabbedPaneUI.getTabBounds(BasicTabbedPaneUI.java, Compiled Code)
at javax.swing.JTabbedPane.getBoundsAt(JTabbedPane.java, Compiled Code)
at Test.main(Test.java, Compiled Code)
------------jdk1.2.2 output -------------
PASSED:java.awt.Rectangle[x=2,y=4,width=41,height=20]
======================================================================