-
Bug
-
Resolution: Fixed
-
P3
-
1.4.1
-
1.0.5
-
x86
-
windows_nt
Name: rl43681 Date: 07/10/2003
FULL PRODUCT VERSION :
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
AccessBridge 1.0.3
FULL OS VERSION :
Windows NT 4.0
A DESCRIPTION OF THE PROBLEM :
AccessBridge.getAccessibleStatesStringFromContext_en_US throws ArrayIndexOutofBoundsException.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
import javax.swing.*;
import java.awt.event.*;
import javax.accessibility.*;
public class ButTest
{
public static void main(String s[])
{
JFrame fr = new JFrame("ButTest");
final JButton b1= new JButton("One")
{
public boolean isFocusTraversable()
{
return false;
}
public boolean isOpaque()
{
return false;
}
};
JButton b2= new JButton("Two");
b2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
b1.setRequestFocusEnabled(false);
b1.setVisible(false);
b1.setEnabled(false);
}
});
fr.getContentPane().add(b1);
fr.getContentPane().add(b2,"South");
fr.pack();
fr.setVisible(true);
}
}
Run the above testcase and press Button TWO
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Should not throe array index out of bounds exception
ACTUAL -
ArrayINdexoutofbounds exception
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Exception in thread "Thread-2" java.lang.ArrayIndexOutOfBoundsException: 0
at com.sun.java.accessibility.AccessBridge.getAccessibleStatesStringFromContext_en_US(AccessBridge.java:1410)
at com.sun.java.accessibility.AccessBridge.run(Native Method)
at java.lang.Thread.run(Thread.java:536)
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import java.awt.event.*;
import javax.accessibility.*;
public class ButTest
{
public static void main(String s[])
{
JFrame fr = new JFrame("ButTest");
final JButton b1= new JButton("One")
{
public boolean isFocusTraversable()
{
return false;
}
public boolean isOpaque()
{
return false;
}
};
JButton b2= new JButton("Two");
b2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
b1.setRequestFocusEnabled(false);
b1.setVisible(false);
b1.setEnabled(false);
}
});
fr.getContentPane().add(b1);
fr.getContentPane().add(b2,"South");
fr.pack();
fr.setVisible(true);
}
}
---------- END SOURCE ----------
(Review ID: 187698)
======================================================================